mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-24 03:18:35 +08:00
规则引擎
This commit is contained in:
13
pkg/rule_engine/nodes/action_assign_to_customer_node.go
Normal file
13
pkg/rule_engine/nodes/action_assign_to_customer_node.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package nodes
|
||||
|
||||
type assignToCustomerNode struct {
|
||||
bareNode
|
||||
}
|
||||
|
||||
type assignToCustomerFactory struct{}
|
||||
|
||||
func (f assignToCustomerFactory) Name() string { return "AssignCustomerFactoryNode" }
|
||||
func (f assignToCustomerFactory) Category() string { return NODE_CATEGORY_ACTION }
|
||||
func (f assignToCustomerFactory) Create(id string, meta Metadata) (Node, error) {
|
||||
return nil, nil
|
||||
}
|
||||
Reference in New Issue
Block a user