A lightweight CLI tool to manage tasks using Go. Tasks are stored in a JSON file, no database required.
β
Add a new task
β
List all tasks
β
Remove or mark a task as done (coming soon)
Clone the repository:
git clone https://github.com/Mohammad-Alipour/task-cli.git
cd task-cli
go mod tidy
//Add a new task:
go run main.go add --task "Learn Golang"
//List all tasks:
go run main.go list