Files
superDreamFront/app/api/v1/health.py
2026-04-15 21:35:26 +08:00

9 lines
156 B
Python

from fastapi import APIRouter
router = APIRouter()
@router.get("/health")
async def health_check():
return {"status": "ok", "service": "SuperDream"}