10 lines
181 B
Python
10 lines
181 B
Python
"""健康检查端点。"""
|
|
|
|
from aiohttp import web
|
|
|
|
from response import ok
|
|
|
|
|
|
async def health_handler(request: web.Request) -> web.Response:
|
|
return ok(data={"health": "ok"})
|