From c68d297b2915062ae3fc745b4d5b3118ce0071e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=B9=E5=8D=9A?= <1016318004@qq.com> Date: Wed, 12 Feb 2025 18:15:58 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0app=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/main.py b/apps/main.py index 980ec711..11959dab 100644 --- a/apps/main.py +++ b/apps/main.py @@ -25,6 +25,7 @@ from apps.routers import ( comment, conversation, document, + flow, health, knowledge, record, @@ -56,6 +57,7 @@ app.include_router(client.router) app.include_router(blacklist.router) app.include_router(document.router) app.include_router(knowledge.router) +app.include_router(flow.router) # 初始化后台定时任务 scheduler = BackgroundScheduler() scheduler.start() -- Gitee