Files
openlan/pkg/config/vxlan.go
Daniel Ding c9a0daed96
Some checks failed
Coverage CI / build (push) Has been cancelled
CodeQL / Analyze (go) (push) Has been cancelled
Ubuntu CI / build (push) Has been cancelled
fea: router: support multiple addresses.
2025-05-29 10:53:17 +08:00

11 lines
206 B
Go
Executable File

package config
type VxLANSpecifies struct {
Name string `json:"-" yaml:"-"`
Vni uint32 `json:"vni" yaml:"vni"`
Fabric string `json:"fabric" yaml:"fabric"`
}
func (c *VxLANSpecifies) Correct() {
}