v1.2.56 - 恢复一尘看板路由
This commit is contained in:
parent
3f6296202b
commit
e962548ce3
|
|
@ -16,6 +16,7 @@ from app.routers import auth, collections, operations
|
|||
from app.routers import ocr as ocr_router
|
||||
from app.routers import users as users_router
|
||||
from app.routers import information as information_router
|
||||
from app.routers import yichens as yichens_router
|
||||
|
||||
# 版本信息 - 从 config/VERSION 文件读取
|
||||
def get_version():
|
||||
|
|
@ -82,6 +83,7 @@ app.include_router(ocr_router.router) # OCR 识别
|
|||
app.include_router(users_router.router) # 当前用户接口
|
||||
app.include_router(users_router.admin_router) # 管理员用户管理
|
||||
app.include_router(information_router.router) # 资讯
|
||||
app.include_router(yichens_router.router) # 一尘看板
|
||||
|
||||
|
||||
@app.get("/")
|
||||
|
|
|
|||
Loading…
Reference in New Issue