rebuild(stage-1): establish isolated application skeleton

This commit is contained in:
leefer
2026-07-30 00:46:43 +08:00
parent 6df26a2545
commit 603e73d128
32 changed files with 2691 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
from fastapi import APIRouter
from backend.http.routes.health import router as health_router
api_router = APIRouter()
api_router.include_router(health_router)