10 lines
241 B
Python
10 lines
241 B
Python
"""API v1 router — aggregates all sub-routers."""
|
|
|
|
from fastapi import APIRouter
|
|
|
|
from app.api.v1.health import router as health_router
|
|
|
|
router = APIRouter(prefix="/api/v1")
|
|
|
|
# Health (unauthenticated)
|
|
router.include_router(health_router)
|