mirror of
https://github.com/go-task/task.git
synced 2025-01-06 03:53:54 +02:00
8 lines
105 B
Go
8 lines
105 B
Go
package taskfile
|
|
|
|
// Call is the parameters to a task call
|
|
type Call struct {
|
|
Task string
|
|
Vars *Vars
|
|
}
|