yangzhitao
feat: integrate FastAPI backend and health check functionality
b4929ca
raw
history blame contribute delete
247 Bytes
from fastapi import APIRouter
from .health import router as health_router
from .hf import router as hf_router
api_router = APIRouter()
api_router.include_router(health_router, prefix="/health")
api_router.include_router(hf_router, prefix="/hf")