add the get project config api (#33)

* add the get project config api

* delete the password values
This commit is contained in:
Wu Clan
2023-05-11 15:20:21 +08:00
committed by GitHub
parent 2a51c76493
commit a19d942bd7
3 changed files with 55 additions and 1 deletions

View File

@ -4,9 +4,12 @@ from fastapi import APIRouter
from backend.app.api.v1.auth import router as auth_router
from backend.app.api.v1.task_demo import router as task_demo_router
from backend.app.api.v1.sys_config import router as sys_config_router
v1 = APIRouter(prefix='/v1')
v1.include_router(auth_router)
v1.include_router(task_demo_router, prefix='/tasks', tags=['任务管理'])
v1.include_router(sys_config_router, prefix='/configs', tags=['系统配置'])