Todo app with clean architecture
Run app.
$ docker-compose up
Create todo.
$ curl -X POST -H "Content-Type: application/json" -d '{"name":"test", "memo":"memo", "isDone":true}' localhost:3333/todo
Get todos.
curl -s -X GET http://localhost:3333/todo/
Routing is here.