Files
openlan/pkg/config/vxlan.go
2022-09-27 12:53:19 +08:00

11 lines
185 B
Go
Executable File

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