package
Version:
v0.3.14
Opens a new window with list of versions in this module.
Published: Mar 9, 2026
License: MIT
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Plan struct {
Title string `json:"title,omitempty"`
Tasks []Task `json:"tasks"`
}
IsEmpty returns true if no plan has been set
SetTasks creates a new plan with the given title and task descriptions
UpdateTask updates a task status by index
const (
StatusPending Status = "pending"
StatusRunning Status = "running"
StatusDone Status = "done"
StatusSkipped Status = "skipped"
)
type Task struct {
Description string `json:"description"`
Status Status `json:"status"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.