Files
webhook/handlers/health.py

10 lines
183 B
Python

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