1
0
mirror of https://github.com/go-task/task.git synced 2025-05-23 22:50:26 +02:00
task/internal/editors/output.go

15 lines
339 B
Go
Raw Normal View History

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