10 lines
159 B
Python
Raw Normal View History

2025-04-03 22:11:20 +08:00
from fastapi import APIRouter
router = APIRouter(tags=["健康检查"])
@router.get("/status")
async def status():
return {
"status": "ok"
}