Just a basic todo app for command line
It is basic todo list for command line.
# sample commmands
$ todo --ls # lists all todos
1. Create log file - [id]
2. Nextjs Vimgore frontend - [id]
$ todo -del 1 # deletes the id
Deleted todo of id 1
$ todo -add something # creates a new todo
Added a todo of id 1
$ todo -da # deletes all the todos
Deleted all the todos
$ todo -ud 1 false # sets the first todo as done
Updated todo with id 1 as false
You need golang installed on your system. Check their official site. After installing golang. Clone the repo to local system.
$ git clone https://github.com/ps173/go-todo-app.git
After Cloning.Do cd go-todo-app
and then run
$ go build .