mirror of
https://github.com/luscis/openlan.git
synced 2025-12-24 11:10:54 +08:00
11 lines
232 B
Go
Executable File
11 lines
232 B
Go
Executable File
package config
|
|
|
|
type VxLANSpecifies struct {
|
|
Name string `json:"name,omitempty" yaml:"name,omitempty"`
|
|
Vni uint32 `json:"vni" yaml:"vni"`
|
|
Fabric string `json:"fabric" yaml:"fabric"`
|
|
}
|
|
|
|
func (c *VxLANSpecifies) Correct() {
|
|
}
|