
- Set up project structure with FastAPI - Configure SQLAlchemy with SQLite - Implement user and item models - Set up Alembic for database migrations - Create CRUD operations for models - Implement API endpoints for users and items - Add authentication functionality - Add health check endpoint - Configure Ruff for linting - Update README with comprehensive documentation
10 lines
379 B
Python
10 lines
379 B
Python
from app.schemas.item import Item, ItemCreate, ItemInDB, ItemUpdate
|
|
from app.schemas.token import Token, TokenPayload
|
|
from app.schemas.user import User, UserCreate, UserInDB, UserUpdate
|
|
|
|
# Make schemas available at the package level
|
|
__all__ = [
|
|
"User", "UserCreate", "UserUpdate", "UserInDB",
|
|
"Item", "ItemCreate", "ItemUpdate", "ItemInDB",
|
|
"Token", "TokenPayload",
|
|
] |