mirror of
https://github.com/luscis/openlan.git
synced 2025-10-05 08:36:59 +08:00
12 lines
252 B
Go
12 lines
252 B
Go
package config
|
|
|
|
type RouterSpecifies struct {
|
|
Mss int `json:"tcpMss,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
Link string `json:"link,omitempty"`
|
|
Subnets []Subnet `json:"subnets"`
|
|
}
|
|
|
|
func (n *RouterSpecifies) Correct() {
|
|
}
|