Files

9 lines
180 B
Python
Raw Permalink Normal View History

2026-05-28 22:02:10 +08:00
from fastapi import APIRouter
from . import health
api_router = APIRouter(prefix="/api/v1")
2026-05-28 22:02:10 +08:00
root_router = APIRouter()
root_router.include_router(health.router, tags=["health"])