A simple API to manage your tasks with creation, editing and completion.
Add tasks with title and description.
Update details or mark as completed.
Remove tasks you no longer need.
# Get all tasks
GET /tasks
Response:
[
{ "id": 1, "title": "Do homework", "concluded": false },
{ "id": 2, "title": "Read book", "concluded": true }
]