aboutsummaryrefslogtreecommitdiffstats
path: root/todo.go
diff options
context:
space:
mode:
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
}