Skip to content
Snippets Groups Projects
device.go 315 B
Newer Older
  • Learn to ignore specific revisions
  • Manuel Kieweg's avatar
    Manuel Kieweg committed
    package nucleus
    
    import (
    	"github.com/google/uuid"
    	"github.com/openconfig/ygot/ygot"
    )
    
    type Device struct {
    
    Manuel Kieweg's avatar
    Manuel Kieweg committed
    	device    ygot.GoStruct
    	SBI       SouthboundInterface
    	Config    DeviceConfig
    	Transport Transport
    
    Manuel Kieweg's avatar
    Manuel Kieweg committed
    }
    
    type DeviceConfig struct {
    
    Manuel Kieweg's avatar
    Manuel Kieweg committed
    	Uuid     uuid.UUID
    	Address  string
    	Username string
    	Password string