diff options
Diffstat (limited to 'todo.go')
| -rw-r--r-- | todo.go | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -3,13 +3,14 @@ package todolist import "time" type Todo struct { - Id string - Subject string - Projects []string - Contexts []string - Due time.Time - Completed bool - Archived bool + Id int + Subject string + Projects []string + Contexts []string + Due string + FormattedDue time.Time + Completed bool + Archived bool } func NewTodo() *Todo { |
