A simple todo app to improve golang skills.
$ dep ensure
$ go run main.go
$ go build
$ ./todo-app
GET /todos (All todos)
GET /todos/{id} (Specific todo)
POST /todos/{id} (Create todo)
-> POST VALUES, json: {description: string, finished: bool, date: string}
DELETE /todos/{id} (Delete specific todo)
- CRUD api
- Home to view and interact visually with todos
- Unit tests