Skip to content
Snippets Groups Projects

"Overhaul Architecture"

Merged Ghost User requested to merge 67-overhaul-architecture into develop
4 files
+ 42
19
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 4
3
@@ -79,9 +79,10 @@ func (c *Core) UnMarshallPNDs() error {
// CreateSouthboundInterfaces initializes the controller with his SBIs
func (c *Core) CreateSouthboundInterfaces() {
if len(c.southboundInterfaces) == 0 {
sbi := &AristaOC{}
sbi.SetDefaults()
c.southboundInterfaces[sbi.SbiIdentifier()] = sbi
arista := GetAristaOCInstance()
c.southboundInterfaces[arista.SbiIdentifier()] = arista
openconfig := GetOpenconfigInstance()
c.southboundInterfaces[openconfig.SbiIdentifier()] = openconfig
}
}
Loading