Files
infra/14_infra-assistant/api/routers/health.py
T

8 lines
118 B
Python
Raw Normal View History

2026-03-21 14:12:55 +01:00
from fastapi import APIRouter
router = APIRouter()
@router.get("/health")
def health():
return {"status": "ok"}