mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-23 10:58:35 +08:00
10 lines
329 B
Go
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
|
|
}
|