mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00
13 lines
198 B
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
|
|
}
|