from fastapi import APIRouter router = APIRouter(tags=["健康检查"]) @router.get("/status") async def status(): return { "status": "ok" }