aboutsummaryrefslogtreecommitdiffstats
path: root/todolist/app.go
diff options
context:
space:
mode:
authorGrant Ammons <gammons@gmail.com>2017-06-19 12:58:27 -0400
committerGitHub <noreply@github.com>2017-06-19 12:58:27 -0400
commitdafb74428d8a16b28533aa25f83f25ea255c18a3 (patch)
treeb5df1531dec03b2a2beb3a1ea05b42938684b937 /todolist/app.go
parent4a91b284cc1840ad4dc4e60e831c8c6e3de283de (diff)
parent0d815737ccb61a6664a9943516518decdddf0bb2 (diff)
Merge pull request #68 from gammons/code-cleanup
Fix parsing a todo with europe date format
Diffstat (limited to 'todolist/app.go')
-rw-r--r--todolist/app.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/todolist/app.go b/todolist/app.go
index 56787d3..42b1361 100644
--- a/todolist/app.go
+++ b/todolist/app.go
@@ -8,7 +8,7 @@ import (
)
type App struct {
- TodoStore *FileStore
+ TodoStore Store
TodoList *TodoList
}