Files
offerpai_python_ai/app/api/health.py
T
2026-03-13 13:51:51 +08:00

10 lines
213 B
Python

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