1
0
mirror of https://github.com/go-task/task.git synced 2025-03-05 15:05:42 +02:00

24 lines
451 B
Go
Raw Normal View History

package taskfile
2019-02-24 09:24:57 +01:00
// Tasks represents a group of tasks
type Tasks map[string]*Task
// Task represents a task
type Task struct {
2018-08-05 12:53:42 -03:00
Task string
Cmds []*Cmd
Deps []*Dep
Desc string
2019-02-24 09:24:57 +01:00
Details string
2018-08-05 12:53:42 -03:00
Sources []string
Generates []string
Status []string
Dir string
Vars Vars
Env Vars
Silent bool
Method string
Prefix string
IgnoreError bool `yaml:"ignore_error"`
}