- /api/todo/create
- /api/todo/update
- /api/todo/find
- docker
- docker-compose
- golang
- postgresql
- request
{
"name": "todo name",
"body": "todo body",
"priority": "low"
}
- response
{
"id": "uuid",
"name": "todo name",
"body": "todo body",
"priority": "low",
"deadline": null,
"createdAt": "some time",
"updatedAt": "somt time"
}
- request
{
"id": "uuid",
"name": "new todo name",
"body": "new todo body",
"priority": "high"
}
- request
{
"id": "uuid"
}
- response
{
"id": "uuid",
"name": "todo name",
"body": "todo body",
"priority": "low",
"deadline": null,
"createdAt": "some time",
"updatedAt": "somt time"
}