- Create a CLI to manage my todo list
- I created this to learn Golang
- Add a task
- Delete a task
- Mark task done
(can't be undone) - List all tasks
- Save tasks to a file
- Load tasks from a file
JSON
todo add [task-name]todo listtodo delete [task-id]todo complete [task-id]todo help
- Clone this project to your local machine
- Open terminal and go to the project directory
- Run
go build -o todo-cli - Run
./todo-cli + [command] | help