diff options
| author | Grant Ammons <gammons@gmail.com> | 2016-04-24 08:22:24 -0400 |
|---|---|---|
| committer | Grant Ammons <gammons@gmail.com> | 2016-04-24 08:22:24 -0400 |
| commit | 44dd550fdd7e71c1f0edfe3f77a8b9fafab967e8 (patch) | |
| tree | 8222cbbd0accad5f55cfa9de9d0408036e2b3e3a /todo.go | |
| parent | 8138ffaf380fb646b6877dd20f874735eddd2d6d (diff) | |
Beginning on working on due date stuff
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 } |
