
- Set up project structure with FastAPI and SQLAlchemy - Configure SQLite database with async support - Implement CRUD endpoints for items resource - Add health endpoint for monitoring - Set up Alembic migrations - Create comprehensive documentation generated with BackendIM... (backend.im)
6 lines
241 B
Python
6 lines
241 B
Python
from fastapi import APIRouter
|
|
from app.api.v1 import health, items
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(health.router, prefix="/health", tags=["health"])
|
|
api_router.include_router(items.router, prefix="/items", tags=["items"]) |