Files
banban/mini-program/app/routers/health.py
2026-03-25 15:58:48 +08:00

9 lines
158 B
Python

from fastapi import APIRouter
router = APIRouter(tags=["health"])
@router.get("/health")
async def health() -> dict[str, str]:
return {"status": "ok"}