基本逻辑完成
This commit is contained in:
26
config/config.go
Normal file
26
config/config.go
Normal file
@@ -0,0 +1,26 @@
|
||||
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
|
||||
Reference in New Issue
Block a user