1
0
mirror of https://github.com/go-task/task.git synced 2024-12-14 10:52:43 +02:00
task/taskfile/ast/call.go
2024-01-10 21:32:49 -03:00

10 lines
185 B
Go

package ast
// Call is the parameters to a task call
type Call struct {
Task string
Vars *Vars
Silent bool
Indirect bool // True if the task was called by another task
}