Products
Product pages to view all products, specific products or checkout the existing cart.
Get specific product by ID->127.0.0.1:5000/product/id/<id>Get all products->127.0.0.1:5000/productsAdd item to cart->127.0.0.1:5000/addEmpty cart->127.0.0.1:5000/emptyDelete item from cart->127.0.0.1:5000/delete/<string:code>Checkout cart->127.0.0.1:5000/checkoutView all orders made->127.0.0.1:5000/vieworder
Get specific product by ID
Retrieve function is implemented at main.py:

Get all products
Retrieve function is implemented at main.py:

Add item to cart
Add function is implemented at main.py:

Empty cart
Empty cart function is implemented at main.py:
Delete item from cart
Delete function is implemented at main.py:
Checkout cart
Checkout cart function is implemented at main.py:

View all orders made
View all function is implemented at main.py:
