mirror of
https://github.com/luscis/openlan.git
synced 2025-10-06 09:06:54 +08:00
14 lines
272 B
Go
Executable File
14 lines
272 B
Go
Executable File
package schema
|
|
|
|
type VxLAN struct {
|
|
Name string `json:"name"`
|
|
Bridge string `json:"bridge"`
|
|
Members []VxLANMember `json:"members"`
|
|
}
|
|
|
|
type VxLANMember struct {
|
|
Vni int `json:"vni"`
|
|
Local string `json:"local"`
|
|
Remote string `json:"remote"`
|
|
}
|