ygot icon indicating copy to clipboard operation
ygot copied to clipboard

Feature Request: Fluent setters for generated GoStructs

Open DanG100 opened this issue 3 years ago • 0 comments

For example,

dev := &ygot.Device{}
dev.GetOrCreateInterface("eth1")
  .WithEnabled(true)
  .WithMacAddress("example")
  .GetOrCreateSubinterface(0).GetOrCreateIpv4()
    .WithMTU(100)

Add flag to generate this.

DanG100 avatar Apr 15 '22 23:04 DanG100