
- Implemented user authentication with JWT tokens - Created product management endpoints - Added shopping cart functionality - Implemented order management system - Setup database models with SQLAlchemy - Created alembic migrations - Added health check endpoint generated with BackendIM... (backend.im)
4 lines
167 B
Python
4 lines
167 B
Python
from app.models.user import User
|
|
from app.models.product import Product
|
|
from app.models.cart import CartItem
|
|
from app.models.order import Order, OrderItem, OrderStatus |