https://github.com/mandliya/cli-gtd
A toy "Get Things Done" todo manager
https://github.com/mandliya/cli-gtd
bolt boltdb go golang
Last synced: 4 months ago
JSON representation
A toy "Get Things Done" todo manager
- Host: GitHub
- URL: https://github.com/mandliya/cli-gtd
- Owner: mandliya
- License: mit
- Created: 2018-08-06T00:44:19.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-06T00:58:58.000Z (almost 7 years ago)
- Last Synced: 2024-12-29T19:46:36.705Z (6 months ago)
- Topics: bolt, boltdb, go, golang
- Language: Go
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cli-gtd
A toy "Get Things Done" todo manager built in Go and BoltDb.This is a simple task manager inspired from [Gophercises Exercise 7 CLI Task Manager](https://gophercises.com/exercises/task) built in Go and BoltDb to learn go and have fun.
```
C:\Users\ravi\go\src\github.com\GTD>gtd list
You have no pending tasks! Well done!C:\Users\ravi\go\src\github.com\GTD>gtd add Get Some Milk
Added "Get Some Milk" to your task list with id 1C:\Users\ravi\go\src\github.com\GTD>gtd add Get Some Butter
Added "Get Some Butter" to your task list with id 2C:\Users\ravi\go\src\github.com\GTD>gtd list
You have the following tasks:
1. Get Some Milk
2. Get Some ButterC:\Users\ravi\go\src\github.com\GTD>gtd do 1
Marked 1 task as completedC:\Users\ravi\go\src\github.com\GTD>gtd list
You have the following tasks:
2. Get Some Butter
```