mirror of
https://github.com/RWejlgaard/org.git
synced 2026-09-02 01:15:35 +00:00
10 lines
275 B
Go
10 lines
275 B
Go
package model
|
|
|
|
// TodoState represents the state of a todo item
|
|
type TodoState string
|
|
|
|
const (
|
|
// StateNone is the empty (no TODO keyword) state. Concrete TODO states are
|
|
// user-configurable (see config.States), so they are not hardcoded here.
|
|
StateNone TodoState = ""
|
|
)
|