feat 机器人
This commit is contained in:
15
Server/robot/config/config.dev.yaml
Normal file
15
Server/robot/config/config.dev.yaml
Normal file
@@ -0,0 +1,15 @@
|
||||
app:
|
||||
name: "robot-dev"
|
||||
|
||||
log:
|
||||
debug: true
|
||||
level: "debug"
|
||||
maxSize: 10
|
||||
maxBackups: 100
|
||||
maxAge: 7
|
||||
|
||||
client:
|
||||
uid: [ 1,1000000 ]
|
||||
websocket:
|
||||
address: "ws://127.0.0.1"
|
||||
port: 8501
|
||||
27
Server/robot/config/config.go
Normal file
27
Server/robot/config/config.go
Normal file
@@ -0,0 +1,27 @@
|
||||
package config
|
||||
|
||||
import "common/config"
|
||||
|
||||
const path = "./config"
|
||||
|
||||
type Config struct {
|
||||
App *config.AppConfig `yaml:"app"`
|
||||
Log *config.LogConfig `yaml:"log"`
|
||||
Client *struct {
|
||||
UID []int32 `yaml:"uid"`
|
||||
Websocket *config.AddressConfig `yaml:"websocket"`
|
||||
} `yaml:"client"`
|
||||
}
|
||||
|
||||
var cfg *Config
|
||||
|
||||
// LoadConfig 加载应用配置
|
||||
func LoadConfig() error {
|
||||
c, err := config.LoadConfig(path, cfg)
|
||||
cfg = c
|
||||
return err
|
||||
}
|
||||
|
||||
func Get() *Config {
|
||||
return cfg
|
||||
}
|
||||
15
Server/robot/config/config.prod.yaml
Normal file
15
Server/robot/config/config.prod.yaml
Normal file
@@ -0,0 +1,15 @@
|
||||
app:
|
||||
name: "robot-prod"
|
||||
|
||||
log:
|
||||
debug: false
|
||||
level: "debug"
|
||||
maxSize: 10
|
||||
maxBackups: 100
|
||||
maxAge: 7
|
||||
|
||||
client:
|
||||
uid: [ 1,1000000 ]
|
||||
websocket:
|
||||
address: "ws://172.18.28.0"
|
||||
port: 8501
|
||||
Reference in New Issue
Block a user