12 lines
400 B
Go
12 lines
400 B
Go
|
package vo
|
||
|
|
||
|
type ServerSetting struct {
|
||
|
EndpointAddress string `json:"endpointAddress"`
|
||
|
DnsServers []string `json:"dnsServers"`
|
||
|
MTU int `json:"MTU"`
|
||
|
PersistentKeepalive int `json:"persistentKeepalive"`
|
||
|
FirewallMark string `json:"firewallMark"`
|
||
|
Table string `json:"table"`
|
||
|
ConfigFilePath string `json:"configFilePath"`
|
||
|
}
|