Documentation ¶ Index ¶ Variables type Date type Task Constants ¶ This section is empty. Variables ¶ View Source var ( ErrDateExists = errors.New("date exists") ErrDateNotFound = errors.New("date not found") ) View Source var ( ErrTaskExists = errors.New("task exists") ErrTaskNotFound = errors.New("task not found") ErrTaskScheduled = errors.New("task already scheduled for this time") ) Functions ¶ This section is empty. Types ¶ type Date ¶ type Date struct { Date_Uuid uuid.UUID Date time.Time } type Task ¶ type Task struct { Task_Uuid uuid.UUID Time time.Time Task string Date_Uuid uuid.UUID } Source Files ¶ View all Source files date.go task.go Click to show internal directories. Click to hide internal directories.