Files
PandaX/pkg/rule_engine/nodes/action_delete_relation_node.go
PandaGoAdmin 1be2dc7537 规则引擎
2023-03-01 16:55:47 +08:00

10 lines
329 B
Go

package nodes
type deleteRelationNodeFactory struct{}
func (f deleteRelationNodeFactory) Name() string { return "DeleteRelationNode" }
func (f deleteRelationNodeFactory) Category() string { return NODE_CATEGORY_ACTION }
func (f deleteRelationNodeFactory) Create(id string, meta Metadata) (Node, error) {
return nil, nil
}