This is the home route of the api and displays a simple welcome message.
/all route of the api gets all the users in the data base and sends it to the client.
send a POST request to / route of the api to create a new user. Send the following payload with the request.
- name
- country
Send a GET request to /:id route of the api to get a particular users from the database.
Send a PUT request to /:id route of the api to getupdate a particular users in the database.
Send a DELETE request to /:id route of the api to deleta a particular users from the database.