Skip to content
Snippets Groups Projects

Use SPF Viper for configuration

2 files
+ 26
2
Compare changes
  • Side-by-side
  • Inline
Files
2
package nucleus
import "code.fbi.h-da.de/cocsn/gosdn/nucleus/interfaces"
type pndImplementation struct {
name string
sbiContainer []interfaces.SouthboundInterface
}
//NewPNDImplementation creates a Principle Network Domain
func NewPNDImplementation(name string, sbi ...interfaces.SouthboundInterface) interfaces.PrincipalNetworkDomain {
return &pndImplementation{
name: name,
sbiContainer: sbi,
}
}
// Interface satisfaction
Loading