From beb42162264fd1a098cfd52c4fc80b5e3c236f54 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Thu, 26 Mar 2026 17:19:21 +0800 Subject: [PATCH] bugfix --- app/sage.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/sage.py b/app/sage.py index 64778df..2434fe1 100644 --- a/app/sage.py +++ b/app/sage.py @@ -31,6 +31,7 @@ from platformbiz.init import load_platformbiz from accounting.init import load_accounting from woa.init import load_woa from smssend import load_smssend +from remotetask.init import load_remotetask from ext import * from rf import * __version__ = '0.0.1' @@ -84,6 +85,7 @@ def init(): load_discount() load_woa() load_smssend() + load_remotetask() add_cleanupctx(run_zmq_proxy) if __name__ == '__main__':