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