初始话项目框架

This commit is contained in:
zk
2026-03-13 13:51:51 +08:00
commit f26585a130
25 changed files with 845 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
+9
View File
@@ -0,0 +1,9 @@
"""健康检查路由"""
from fastapi import APIRouter
router = APIRouter(prefix="/health", tags=["健康检查"])
@router.get("/", summary="健康检查")
async def health_check():
return {"status": "ok"}