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