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