chore: init monorepo snapshot

This commit is contained in:
liaibo
2025-11-23 10:55:04 +08:00
commit c70ff52869
941 changed files with 246586 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
from typing import Dict
from fastapi import APIRouter
router = APIRouter()
@router.get("/health")
async def healthcheck() -> Dict[str, str]:
"""简单健康检查,供阶段 0 自检使用。"""
return {"status": "ok"}