- GET /users - Returns a list of all users.
- GET /users/ - Returns the user with the specified ID.
- POST /users - Creates a new user with the specified data. (Query Parameters: username, email, password)
- PUT /users/ - Updates the user with the specified ID with the new data. (Query Parameters: username, email, password)
- DELETE /users/ - Deletes the user with the specified ID.
- id (a unique identifier for the user)
- name
- password
docker-compose up
GET /users - Returns All Users
GET /users/ - Returns the user with the specified ID.