
- Set up project structure with app modules - Configure SQLite database connection - Set up Alembic for database migrations - Implement Item model with CRUD operations - Create API endpoints for items management - Add health check endpoint - Add API documentation - Add comprehensive README
5 lines
155 B
Python
5 lines
155 B
Python
"""
|
|
Schemas package.
|
|
"""
|
|
from .health import HealthCheck, HealthStatus # noqa: F401
|
|
from .item import Item, ItemCreate, ItemUpdate, ItemInDB # noqa: F401 |