mirror of
https://github.com/go-task/task.git
synced 2025-01-20 04:59:37 +02:00
21 lines
348 B
Go
21 lines
348 B
Go
|
package taskfile
|
||
|
|
||
|
// Tasks representas a group of tasks
|
||
|
type Tasks map[string]*Task
|
||
|
|
||
|
// Task represents a task
|
||
|
type Task struct {
|
||
|
Task string
|
||
|
Cmds []*Cmd
|
||
|
Deps []*Dep
|
||
|
Desc string
|
||
|
Sources []string
|
||
|
Generates []string
|
||
|
Status []string
|
||
|
Dir string
|
||
|
Vars Vars
|
||
|
Env Vars
|
||
|
Silent bool
|
||
|
Method string
|
||
|
}
|