rts-sim-testing-service/bin/config/example_config.go
2024-05-29 11:48:04 +08:00

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
}