mirror of
https://github.com/go-task/task.git
synced 2025-05-21 22:43:13 +02:00
15 lines
339 B
Go
15 lines
339 B
Go
package editors
|
|
|
|
// Output wraps task list output for use in editor integrations (e.g. VSCode, etc)
|
|
type Output struct {
|
|
Tasks []Task `json:"tasks"`
|
|
}
|
|
|
|
// Task describes a single task
|
|
type Task struct {
|
|
Name string `json:"name"`
|
|
Desc string `json:"desc"`
|
|
Summary string `json:"summary"`
|
|
UpToDate bool `json:"up_to_date"`
|
|
}
|