tidy api v1.0

A thread-safe, in-memory TODO list for Go developers.

๐Ÿ”’ Concurrent requests? No problem โ€” mutex protected.
GET /api/v1/todos
Returns an array of all todo items.
POST /api/v1/todos
Creates a new todo. Send JSON: { "text": "Buy milk" }
DELETE /api/v1/todos/{id}
Deletes the todo with the given ID. Returns 204 No Content.

No todos yet.

Send a POST request to get started.

Try it yourself

GET