Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/the-pesar/todolist-cli
Simple CLI todolist (just for training)
https://github.com/the-pesar/todolist-cli
Last synced: 12 days ago
JSON representation
Simple CLI todolist (just for training)
- Host: GitHub
- URL: https://github.com/the-pesar/todolist-cli
- Owner: the-pesar
- Created: 2024-04-22T06:31:19.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-04-24T09:11:26.000Z (7 months ago)
- Last Synced: 2024-10-11T03:19:45.652Z (about 1 month ago)
- Language: Go
- Homepage:
- Size: 11.7 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Todolist-cli
Simple CLI todolist (just for training)## Compile
```
$ go build main.go
```## Commands
- [x] **add**: ./main add -n {name} -d {description}
- [x] **read**: ./main list {id}
- [x] **update**: ./main update -i {id} -n {newname} -d {newdesc}
- [x] **remove**: ./main remove {id}
- [ ] **status**: ./main status -i {id} -s {newstatus}