mirror of
https://github.com/luscis/openlan.git
synced 2025-10-06 00:57:03 +08:00
11 lines
185 B
Go
Executable File
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() {
|
|
}
|