1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-23 00:00:01 +01:00
VILLASnode/go/pkg/config/node.go
Steffen Vogel 7eec1bb753 update Steffens mail address
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2022-12-16 23:44:07 +01:00

28 lines
581 B
Go

/** Go types for node configuration.
*
* @author Steffen Vogel <post@steffenvogel.de>
* @copyright 2014-2022, Institute for Automation of Complex Power Systems, EONERC
* @license Apache 2.0
*********************************************************************************/
package config
type Node struct {
Name string `json:"name"`
Type string `json:"type"`
}
type NodeDir struct{}
type NodeLoopbackIn struct {
NodeDir
Signals []Signal `json:"signals"`
Hooks []interface{} `json:"hooks"`
}
type LoopbackNode struct {
Node
In NodeLoopbackIn `json:"in"`
}