from aiohttp import web from apollo_utils.service.clients.aiohttp.utils.auth import no_authorize router = web.RouteTableDef() @router.get("/health") @no_authorize async def health(request: web.Request) -> web.Response: return web.json_response({"status": "ok"})