
- Set up FastAPI application with CORS support - Implement SQLAlchemy models and database session management - Create CRUD API endpoints for items management - Configure Alembic for database migrations - Add health check and service info endpoints - Include comprehensive documentation and project structure - Integrate Ruff for code quality and formatting
6 lines
155 B
Python
6 lines
155 B
Python
from fastapi import APIRouter
|
|
from app.api import items
|
|
|
|
api_router = APIRouter()
|
|
|
|
api_router.include_router(items.router, prefix="/items", tags=["items"]) |