1
0
mirror of https://github.com/go-task/task.git synced 2025-11-06 09:09:13 +02:00

output detailed task description

This commit is contained in:
jaedle
2019-02-24 09:24:57 +01:00
parent 13614fb3c4
commit 07221a1b20
3 changed files with 18 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
package taskfile
// Tasks representas a group of tasks
// Tasks represents a group of tasks
type Tasks map[string]*Task
// Task represents a task
@@ -9,6 +9,7 @@ type Task struct {
Cmds []*Cmd
Deps []*Dep
Desc string
Details string
Sources []string
Generates []string
Status []string