mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-23 00:00:01 +01:00
28 lines
581 B
Go
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"`
|
|
}
|