Files
Home_assistant/backend/app/api/routes/health.py
T
2026-06-09 09:36:48 +03:00

9 lines
137 B
Python

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