This is a simple todo CLI, this code is based in Golang Tutorial: Build A Beautiful CLI Todo App With Support for Piping
First of all, download and install Go. 1.20 or higher is required.
First you need to build the project.
make build
After build, you have the project binaries and you can run the todo app with the commands:
./todo -add <your_task_name>
./todo -list
./todo -complete=<index>
./todo -del=<index>
Licensed under the MIT License. See LICENSE
for more details.