feat(*): 添加测试项目代码

This commit is contained in:
2026-05-01 21:22:57 +08:00
commit f4eba61365
15 changed files with 1599 additions and 0 deletions

9
handlers/health.py Normal file
View File

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