Files
2026-02-06 17:06:35 +01:00

9 lines
134 B
Python

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