feat: 添加后端架构、计算模块及部署文档
This commit is contained in:
6
backend/app/api/v1/router.py
Normal file
6
backend/app/api/v1/router.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from fastapi import APIRouter
|
||||
|
||||
from app.api.v1.endpoints.health import router as health_router
|
||||
|
||||
api_router = APIRouter()
|
||||
api_router.include_router(health_router, tags=["health"])
|
||||
Reference in New Issue
Block a user