Files
task/internal/taskfile/call.go
2018-07-10 10:44:58 +02:00

9 lines
136 B
Go

package taskfile
// Call is the parameters to a task call
type Call struct {
Task string
Vars Vars
IgnoreError bool
}