from aiohttp import web from server.core.views import health URL_PREFIX = "/api" def init_routes(app: web.Application) -> None: app.add_routes( [ web.get("/health", health, name="health"), ] )