diff options
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) } } |
