Automated Action 4458f5320b Build e-commerce API with FastAPI and SQLite
- 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)
2025-05-13 22:46:42 +00:00

5 lines
354 B
Python

from app.schemas.user import User, UserCreate, UserInDB, UserUpdate
from app.schemas.product import Product, ProductCreate, ProductUpdate
from app.schemas.cart import CartItem, CartItemCreate, CartItemUpdate, CartItemWithProduct
from app.schemas.order import Order, OrderCreate, OrderItem, OrderWithItems
from app.schemas.token import Token, TokenPayload