From 0761c9d643f1c719ee59e5e72c8f318d84ebf3f2 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Fri, 5 Jun 2026 08:42:15 +0800 Subject: [PATCH] bugfix --- app/sage.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/sage.py b/app/sage.py index 1c0597a..ee1cdff 100644 --- a/app/sage.py +++ b/app/sage.py @@ -32,6 +32,7 @@ from platformbiz.init import load_platformbiz from product_management.init import load_product_management from supplychain.init import load_supplychain from accounting.init import load_accounting +from bugfix.init import load_bugfix from smssend import load_smssend from ext import * from rf import * @@ -63,6 +64,7 @@ def init(): load_smssend() load_dashboard_for_sage() load_reallife_asset() + load_bugfix() if __name__ == '__main__': webapp(init)