22 lines
283 B
Go
22 lines
283 B
Go
package config
|
|
|
|
type ExampleConfig struct {
|
|
Acc acc
|
|
Speed speed
|
|
Btm btm
|
|
}
|
|
type acc struct {
|
|
RemoteIp string
|
|
RemotePort int
|
|
}
|
|
type speed struct {
|
|
RemoteIp string
|
|
RemotePort int
|
|
}
|
|
type btm struct {
|
|
RemoteIp string
|
|
RemotePort int
|
|
LocalIp string
|
|
LocalPort int
|
|
}
|