fix workflow actions

This commit is contained in:
jxxghp
2025-11-20 12:34:44 +08:00
parent 0b178a715f
commit f59d225029

View File

@@ -41,7 +41,7 @@ class WorkFlowManager(metaclass=Singleton):
return False
if obj.__name__ == "BaseAction":
return False
return obj.__module__.startswith("app.actions")
return obj.__module__.startswith("app.workflow.actions")
# 加载所有动作
self._actions = {}