mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-23 10:58:35 +08:00
10 lines
363 B
Go
10 lines
363 B
Go
package nodes
|
|
|
|
type enrichmentDeviceAttrNodeFactory struct{}
|
|
|
|
func (f enrichmentDeviceAttrNodeFactory) Name() string { return "EnrichmentDeviceAttrbute" }
|
|
func (f enrichmentDeviceAttrNodeFactory) Category() string { return NODE_CATEGORY_ENRICHMENT }
|
|
func (f enrichmentDeviceAttrNodeFactory) Create(id string, meta Metadata) (Node, error) {
|
|
return nil, nil
|
|
}
|