1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-30 00:00:11 +01:00
VILLASnode/lib/nodes/go/pkg/registry.go

13 lines
198 B
Go

package node
var (
goNodeTypes = map[string]NodeCtor{}
)
func RegisterNode(name string, ctor NodeCtor) {
goNodeTypes[name] = ctor
}
func NodeTypes() map[string]NodeCtor {
return goNodeTypes
}