Files
task/taskfile/ast/call.go
T

10 lines
185 B
Go
Raw Normal View History

2023-12-29 20:32:03 +00:00
package ast
// Call is the parameters to a task call
type Call struct {
2024-01-11 00:32:49 +00:00
Task string
Vars *Vars
Silent bool
Indirect bool // True if the task was called by another task
}