super basic TODO cli program
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
grumbulon 5166923ccd
continuous-integration/drone/push Build is passing Details
Merge pull request 'Added more error checking, and removed useless variable' (#3) from rewrite into master
Reviewed-on: #3
1 year ago
.drone.yml Update drone to only notify on fail 1 year ago
.gitignore Added more error checking, and removed useless variable 1 year ago
README.md README update 2 years ago
db.go Added more error checking, and removed useless variable 1 year ago
go.mod initial commit with rewrite with urfave cliv2 and gorm for db stuff 1 year ago
go.sum initial commit with rewrite with urfave cliv2 and gorm for db stuff 1 year ago
main.go Added more error checking, and removed useless variable 1 year ago

README.md

go-do

This is a super basic todo cli program I wrote for no real reason other than I needed one to help keep track of my own tasks.

Build it

With Go you can simply build it by going into the root directory and running go build -o godo

Usage

After building it you can run it as any other binary. See below for the --help command output or simply run ./godo --help

Usage of ./godo:
  -add string
    	Add a new task to your list
  -init
    	Init a new DB - this will delete all existing tasks
  -ls
    	List all tasks
  -rm int
    	Removes a task from your list