Command line interface program to manage a to do list.
This small program has no real practical use, it is only a learning resource.
Writen in GO.
git clone https://github.com/joshdev15/todo.git
git run cmd/todo/todo.go <command> <subcommand> <subcommand-value>
git build cmd/todo/todo.go
Run from the compiled in your root directory
./todo <command> <subcommand> <subcommand-value>
If you already have the repository on your computer you can use the command go install command to install the executable binary to your GOPATH
git install cmd/todo/todo.go
then it is easier to run the program directly with the command todo
.
todo <command> <subcommand> <subcommand-value>