
- Set up project structure with FastAPI and SQLite - Create models for products and cart items - Implement schemas for API request/response validation - Add database migrations with Alembic - Create service layer for business logic - Implement API endpoints for cart operations - Add health endpoint for monitoring - Update documentation - Fix linting issues
6 lines
258 B
Python
6 lines
258 B
Python
# Re-export models for easier imports elsewhere
|
|
from app.models.base_model import Base as Base
|
|
from app.models.product import Product as Product
|
|
from app.models.cart import Cart as Cart, CartItem as CartItem
|
|
|
|
__all__ = ["Base", "Product", "Cart", "CartItem"] |