mirror of
https://github.com/go-task/task.git
synced 2025-01-12 04:34:11 +02:00
247c2586c2
* refactor: ast package * feat: read -> taskfile * refactor: taskfile.Taskfile -> taskfile.Read * refactor: move merge function back into taskfile package * refactor: rename taskfile.go to read.go
10 lines
183 B
Go
10 lines
183 B
Go
package ast
|
|
|
|
// Call is the parameters to a task call
|
|
type Call struct {
|
|
Task string
|
|
Vars *Vars
|
|
Silent bool
|
|
Direct bool // Was the task called directly or via another task?
|
|
}
|