工作流

This commit is contained in:
PandaGoAdmin
2023-03-31 11:39:11 +08:00
parent b247985bbe
commit f7f9e67c95
16 changed files with 951 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package nodes
// init register all node's factory
func init() {
RegisterFactory(inputNodeFactory{})
RegisterFactory(transformScriptNodeFactory{})
RegisterFactory(externalDingNodeFactory{})
RegisterFactory(externalWechatNodeFactory{})
RegisterFactory(externalSendEmailNodeFactory{})
RegisterFactory(externalSendSmsNodeFactory{})
}