Automated Action 4e92bb1338 Create FastAPI E-commerce API with SQLite
This commit includes:
- Project structure setup with FastAPI
- Database models with SQLAlchemy (users, products, categories, orders)
- SQLite database configuration
- Alembic migration scripts
- API endpoints for authentication, users, products, categories, and orders
- JWT authentication
- Comprehensive documentation

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-05-11 18:51:15 +00:00

3 lines
331 B
Python

from app.schemas.user import User, UserCreate, UserUpdate, UserInDB, Token, TokenPayload
from app.schemas.product import Product, ProductCreate, ProductUpdate, ProductInDB, Category, CategoryCreate, CategoryUpdate
from app.schemas.order import Order, OrderCreate, OrderUpdate, OrderInDB, OrderItem, OrderItemCreate, OrderItemUpdate