cargo run --release
GET http://localhost:3000/
pour lire tout les todosPOST http://localhost:3000/
avec un body{ "content": "<Test to add>" }
GET http://localhost:3000/id
pour avoir un todo particulierPUT http://localhost:3000/id/complete
pour marquer un todo comme completeDELETE http://localhost:3000/id
pour supprimer un todo particulierGET http://localhost:3000/protected
pour acceder a la page protetee par JWTPOST http://localhost:3000/register
pour creer un compte avec un body{ "username": "<username>", "password": "<password>" }
POST http://localhost:3000/authorize
pour recevoir un JWT avec un body{ "username": "<username>", "password": "<password>" }