Togoo

Togoo : Simple CLI TODO Tool, using Golang and SQLite.

Install
To install, use go get:
$ go get -u github.com/kakakakakku/togoo
$ togoo init
Commands
init
add, a
update, u
list, l
done, d
delete
help, h
Usage
โ ~ togoo add xxx
โ ~ togoo add yyy
โ ~ togoo list
+----+-------+--------+
| NO | TITLE | STATUS |
+----+-------+--------+
| 1 | xxx | - |
| 2 | yyy | - |
+----+-------+--------+
โ ~ togoo done 1
โ ~ togoo list
+----+-------+--------+
| NO | TITLE | STATUS |
+----+-------+--------+
| 2 | yyy | - |
+----+-------+--------+
โ ~ togoo list -a
+----+-------+--------+
| NO | TITLE | STATUS |
+----+-------+--------+
| 1 | xxx | Done |
| 2 | yyy | - |
+----+-------+--------+
Contribution
- Fork (https://github.com/kakakakakku/togoo/fork)
- Create a feature branch
- Commit your changes
- Rebase your local changes against the master branch
- Run test suite with the
go test ./...command and confirm that it passes - Run
gofmt -s - Create a new Pull Request