mirror of
https://github.com/go-task/task.git
synced 2025-04-25 12:25:07 +02:00
12 lines
240 B
Go
12 lines
240 B
Go
package task
|
|
|
|
import "github.com/go-task/task/v3/taskfile/ast"
|
|
|
|
// Call is the parameters to a task call
|
|
type Call struct {
|
|
Task string
|
|
Vars *ast.Vars
|
|
Silent bool
|
|
Indirect bool // True if the task was called by another task
|
|
}
|