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 { AccessKeyID string AccessKeySecret string AppKey string Timeout int } type GameConfig struct { MaxTimeout int } var C config