package
0.5.0
Repository: https://github.com/datadrake/todo.git
Documentation: pkg.go.dev

# Functions

Add creates a new Task and places it in the backlog.
All prints every tracked task.
Backlog prints the Backlog.
Claim moves a task from the backlog to the TODO list.
Completed prints the Completed tasks.
Done marks a task as completed.
Modify alters an existing task.
ParseLabel decodes the name of a label.
ParseProject decodes the name of a project.
Read parses a Task from a file.
Remove deletes a task entirely.
Report generates a TODO.md for the current set of tasks.
ResetCompleted permanently deletes all completed tasks.
Return moves a task from the TODO list back to the Backlog.
TODO prints the TODO list.
Undo moves a task from Completed to the Backlog.

# Constants

TaskFmt is the Scanf and Printf format string used for reading and saving Tasks.

# Structs

Task is a work item which is tracked by this program.

# Type aliases

List is a list of one or more tasks.
Store contains multiple lists of tasks.