mirror of
https://github.com/go-task/task.git
synced 2025-03-29 21:57:04 +02:00
9 lines
122 B
Go
9 lines
122 B
Go
package taskfile
|
|
|
|
// Call is the parameters to a task call
|
|
type Call struct {
|
|
Task string
|
|
Vars *Vars
|
|
Silent bool
|
|
}
|