from typing import Any from fastapi import APIRouter from ows_text_campaigns.api import schemas router = APIRouter(tags=["Infra"]) @router.get( "/hello/", operation_id="hello", response_model=schemas.HelloResponse, ) async def hello() -> dict[str, Any]: return {"status": "ok"}