from typing import Any from fastapi import APIRouter from location.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"}