diff options
| author | Grant Ammons <gammons@gmail.com> | 2016-05-03 15:03:47 -0400 |
|---|---|---|
| committer | Grant Ammons <gammons@gmail.com> | 2016-05-03 15:03:47 -0400 |
| commit | e66354be816cef8b64cf3c629790c1e9f90d64fd (patch) | |
| tree | 63145835587e68c13b16b1b93fc15394c3b57577 | |
| parent | 017ddfd50eec98e4ee8dd42a1dac800cdb674171 (diff) | |
Add output msg when archiving all completed
| -rw-r--r-- | todolist/app.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/todolist/app.go b/todolist/app.go index 67acf12..be40eb3 100644 --- a/todolist/app.go +++ b/todolist/app.go @@ -87,6 +87,7 @@ func (a *App) ArchiveCompleted() { } } a.TodoStore.Save() + fmt.Println("All archived todos completed.") } func (a *App) ListTodos(input string) { |
