A Cobra CLI-based todo-list application made in Go. 🚀
- ✨ Add tasks via CLI
- ✅ Mark tasks as complete
- 📋 List all tasks
- 🗑️ Remove tasks
- Super lightweight and quick to use! ⚡
First, clone this repository to your local machine:
git clone https://github.com/your-username/todo-list.git
cd todo-listRun the following command in the terminal to build the application:
go buildYou can see the available commands by running:
./todo-list --helpHere are some example commands you can use:
📝 Add a Task
./todo-list add "Buy groceries"👀 List All Tasks
./todo-list list✅ Mark a Task as Complete
./todo-list complete 1🗑️ Remove a Task
./todo-list remove 1