Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 487 Bytes

readme.md

File metadata and controls

42 lines (27 loc) · 487 Bytes

Golang CLI Task manager

A sample cli application in golang using cobra and boltdb.

Uses Dep for dependency management.

Build

$ git clone https://github.com/samparsky/go-cli
$ go install .

Add task

$ task add Fetch water
$ task add Visit grocery
$ task add Call mama

List task

$ task list

You have the following tasks
1. Fetch Water
2. Visit grocery
3. Call mama

Do Tasks

$ task do 1

Marked "1" as completed.