# README
GO-cli
Building Go CLI demo
# for first setup
go mod init
go get -v #(dependencies)
# to run
go run main.go add
go run main.go list
Features
- add
- list
UNIX Philosophy
- simple
- clear
- composable
- extensible
- modular
- small
Features
- add todo
- list todo
- mark "done"
- search/filter
- priorities
- archive
- edit
- create dates
- due dates
- tags
- projects
https://spf13.com/presentation/building-an-awesome-cli-app-in-go-oscon/