
Features: - Project structure with FastAPI framework - SQLAlchemy models with SQLite database - Alembic migrations system - CRUD operations for items - API routers with endpoints for items - Health endpoint for monitoring - Error handling and validation - Comprehensive documentation
7 lines
148 B
Python
7 lines
148 B
Python
from .item import ( # noqa: F401
|
|
Item as Item,
|
|
ItemCreate as ItemCreate,
|
|
ItemUpdate as ItemUpdate,
|
|
ItemInDBBase as ItemInDBBase,
|
|
)
|