1
0
mirror of https://github.com/go-task/task.git synced 2025-06-15 00:15:10 +02:00
Files
task/internal/editors/output.go
2022-12-17 10:31:00 -03:00

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"`
}