aboutsummaryrefslogtreecommitdiffstats
path: root/todo.go
diff options
context:
space:
mode:
authorGrant Ammons <gammons@gmail.com>2016-04-24 08:22:24 -0400
committerGrant Ammons <gammons@gmail.com>2016-04-24 08:22:24 -0400
commit44dd550fdd7e71c1f0edfe3f77a8b9fafab967e8 (patch)
tree8222cbbd0accad5f55cfa9de9d0408036e2b3e3a /todo.go
parent8138ffaf380fb646b6877dd20f874735eddd2d6d (diff)
Beginning on working on due date stuff
Diffstat (limited to 'todo.go')
-rw-r--r--todo.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/todo.go b/todo.go
index 739863c..f918b1e 100644
--- a/todo.go
+++ b/todo.go
@@ -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
}