diff options
| author | Grant Ammons <gammons@gmail.com> | 2016-04-24 19:58:53 -0400 |
|---|---|---|
| committer | Grant Ammons <gammons@gmail.com> | 2016-04-24 19:58:53 -0400 |
| commit | dde4f5330c2126af0e3ec17e4098653c6f551426 (patch) | |
| tree | 6e3fa6b61f2e5b2d19463c7467808e44e87b290b /todolist/store.go | |
| parent | 51770b80db0fe299c69bef5060662178f67eb714 (diff) | |
Bring in the app and router
Diffstat (limited to 'todolist/store.go')
| -rw-r--r-- | todolist/store.go | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/todolist/store.go b/todolist/store.go index 006583a..8b892bf 100644 --- a/todolist/store.go +++ b/todolist/store.go @@ -2,10 +2,11 @@ package todolist type Store interface { Load() - Save() + Todos() []Todo + //Save() - Find(id int) Todo - Add(t *Todo) - Remove(t *Todo) - NextId() int + //Find(id int) Todo + //Add(t *Todo) + //Remove(t *Todo) + //NextId() int } |
