In This Repository We will make Basic CRUD API by Code Making
| Methods | URL | Description |
|---|---|---|
| GET | http://localhost:5000/user | Get all user's. |
| GET | http://localhost:5000/user/9b713f21-711d-424d-8158-e3b86530acd1 | Get a specific user's by there uuid (id :- 9b713f21-711d-424d-8158-e3b86530acd1). |
| POST | http://localhost:5000/user | Create a new user's. |
| PATCH | http://localhost:5000/user/9b713f21-711d-424d-8158-e3b86530acd1 | Update an existing user by there uuid (id :- 9b713f21-711d-424d-8158-e3b86530acd1). |
| Delete | http://localhost:5000/user/461f3b8f-2265-4c5b-baf7-2d70bd9e78f7 | Delete an existing user's by there uuid (id :- 461f3b8f-2265-4c5b-baf7-2d70bd9e78f7). |