aboutsummaryrefslogtreecommitdiffstats
path: root/store.go
diff options
context:
space:
mode:
authorGrant Ammons <gammons@gmail.com>2016-04-24 10:22:33 -0400
committerGrant Ammons <gammons@gmail.com>2016-04-24 10:22:33 -0400
commit63893587cb41a1980318b60bf05fafbf433a24ab (patch)
tree39c93f3a1735ef33d028ab9ef44fc0ac15049208 /store.go
parent6bb90375f4efb2f390a61ede0df70eea1ef1f50f (diff)
Organize things a bit better
Diffstat (limited to 'store.go')
-rw-r--r--store.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/store.go b/store.go
deleted file mode 100644
index 006583a..0000000
--- a/store.go
+++ /dev/null
@@ -1,11 +0,0 @@
-package todolist
-
-type Store interface {
- Load()
- Save()
-
- Find(id int) Todo
- Add(t *Todo)
- Remove(t *Todo)
- NextId() int
-}