Files
game-driver/config/config.go
2024-11-01 17:40:34 +08:00

27 lines
325 B
Go

package config
type config struct {
Location string
Point int
Relay string
Mqtt MqttConfig
Aliyun AliyunConfig
Game GameConfig
}
type MqttConfig struct {
Url string
}
type AliyunConfig struct {
AppKey string
Token string
Timeout int
}
type GameConfig struct {
MaxTimeout int
}
var C config