Files
openlan/pkg/schema/vxlan.go
2022-07-29 23:38:54 +08:00

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"`
}