Browse Source

fix: register report_parse router in main.py (missing include_router)

Xiaogang Liao 1 tháng trước cách đây
mục cha
commit
cf25b1a145
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      cfc-langgraph/app/main.py

+ 1 - 0
cfc-langgraph/app/main.py

@@ -19,6 +19,7 @@ app.include_router(tongue.router)
 app.include_router(adapter.router)
 app.include_router(monitoring.router)
 app.include_router(questionnaire_router)
+app.include_router(report_parse.router)
 
 
 @app.middleware("http")