org/internal/model/state.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 = ""
)