Automated Action 1349113fe0 Create FastAPI REST API with SQLite
Features:
- Project structure setup
- Database configuration with SQLAlchemy
- Item model and CRUD operations
- API endpoints for items
- Alembic migrations
- Health check endpoint
- Comprehensive documentation

generated with BackendIM... (backend.im)
2025-05-14 00:49:31 +00:00

4 lines
188 B
Python

from app.schemas.item import ItemBase, ItemCreate, ItemUpdate, ItemInDB, ItemResponse
# Add all schemas here
__all__ = ["ItemBase", "ItemCreate", "ItemUpdate", "ItemInDB", "ItemResponse"]