https://github.com/sibteali786/todo
Command Line TodoList using Golang with locally saved file as Json
https://github.com/sibteali786/todo
Last synced: 3 months ago
JSON representation
Command Line TodoList using Golang with locally saved file as Json
- Host: GitHub
- URL: https://github.com/sibteali786/todo
- Owner: sibteali786
- Created: 2024-10-07T18:11:58.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-11-27T17:49:33.000Z (6 months ago)
- Last Synced: 2025-01-08T22:39:08.866Z (5 months ago)
- Language: Go
- Homepage:
- Size: 3.86 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## TODO Command Line Tool in GOlang
This tool is written in go to practice the capabilities of Go lang in command line tools.## Commands
### Make a Build Command
`cd cmd`
`go build -o `### Example
`go build -o todo`### Run the build
`./todo --add "Get a pizza"`### List of Commands
- --add -> Add an item is todo
- --list -> list all the items
- --complete -> complete given index item ( using a number )
- --delete -> delete given index item
- --verbose -> print details like time created, completed, etc.### Run Tests
`go test`