diff options
| author | Grant Ammons <gammons@gmail.com> | 2016-05-02 06:34:38 -0400 |
|---|---|---|
| committer | Grant Ammons <gammons@gmail.com> | 2016-05-02 06:34:38 -0400 |
| commit | 54e9313ad14269f57a13b32aac59aea17f86d151 (patch) | |
| tree | 9c6364af5e93d6b80df893d317894f60d6662940 /todo.go | |
| parent | b1fc3359eb7498236621d1aa6a9ff18f8cce73c0 (diff) | |
Get completing todos to work correctly
Diffstat (limited to 'todo.go')
| -rw-r--r-- | todo.go | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -30,5 +30,7 @@ func routeInput(command string, input string) { app.AddTodo(input) case command == "d" || command == "del": app.DeleteTodo(input) + case command == "c" || command == "complete": + app.CompleteTodo(input) } } |
