Files
task/taskfile/ast/call.go
T

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
}