
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)
4 lines
188 B
Python
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"] |