1
0
mirror of https://github.com/go-task/task.git synced 2025-02-05 13:25:14 +02:00
task/taskfile/call.go

10 lines
188 B
Go
Raw Normal View History

package taskfile
// Call is the parameters to a task call
type Call struct {
Task string
Vars *Vars
Silent bool
Direct bool // Was the task called directly or via another task?
}