规则引擎

This commit is contained in:
PandaGoAdmin
2023-03-01 16:55:47 +08:00
parent 8e854ce527
commit 1be2dc7537
53 changed files with 1104 additions and 418 deletions

View File

@@ -0,0 +1,14 @@
package nodes
type rPCCallRequestNode struct {
bareNode
TimeoutInSeconds int
}
type rpcCallRequestNodeFactory struct{}
func (f rpcCallRequestNodeFactory) Name() string { return "RPCCallRequestNode" }
func (f rpcCallRequestNodeFactory) Category() string { return NODE_CATEGORY_ACTION }
func (f rpcCallRequestNodeFactory) Create(id string, meta Metadata) (Node, error) {
return nil, nil
}