1
0
mirror of https://github.com/go-task/task.git synced 2025-04-27 12:32:25 +02:00
task/call.go

12 lines
240 B
Go
Raw Normal View History

package task
import "github.com/go-task/task/v3/taskfile/ast"
// Call is the parameters to a task call
type Call struct {
2024-01-11 00:32:49 +00:00
Task string
Vars *ast.Vars
2024-01-11 00:32:49 +00:00
Silent bool
Indirect bool // True if the task was called by another task
}