Files

8 lines
133 B
Python
Raw Permalink Normal View History

2026-06-12 18:16:58 +02:00
from fastapi import APIRouter
router = APIRouter(tags=["health"])
@router.get("/health")
def health():
return {"status": "ok"}