Skip to content
Snippets Groups Projects

Draft: Resolve "Overhaul Architecture"

Merged Ghost User requested to merge 67-overhaul-architecture into v.0.1.0-codename-threadbare
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