mirror of
https://github.com/go-task/task.git
synced 2024-12-14 10:52:43 +02:00
9 lines
136 B
Go
9 lines
136 B
Go
package taskfile
|
|
|
|
// Call is the parameters to a task call
|
|
type Call struct {
|
|
Task string
|
|
Vars Vars
|
|
IgnoreError bool
|
|
}
|