CRUD_project This Project was created to use API performing the crud operations, which are Create: Inserting a new user Read: Selecting the information of the user Update: Updating some or all information of the user Delete: Deleting a user It uses URL information as methods, queries, and the path itself to do these operations, such as POST: As it applies to input new information; so it is used to create data (create operation) GET: It applies to requesting information; so it is used to read data from the database (read operation) PATCH: It modifies the requesting information for the requested query, so it is used to update data from the database (update operation) DELETE: It applies to delete the requesting information/body, so it is used to delete data from the database (delete operation)