game/common/config/config.go
2025-06-14 16:40:15 +08:00

62 lines
1.6 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package config
// Common中只有Special会动态更新Special是各类服务自己需要及时更新的配置信息
type Common struct {
ServiceType int `json:"service_type"`
Logger Logger `json:"logger"`
Etcd Etcd `json:"etcd"`
Redis Redis `json:"redis"`
Nats Nats `json:"nats"`
UserDb Mysql `json:"user_db"`
LogDb ClickHouse `json:"log_db"`
GameJson string `json:"game_json"`
GitCommit string `json:"git_commit"` // 服务当前的hash值
GitBranch string `json:"git_branch"` // 服务当前的版本分支
BuildDate string `json:"build_date"` // 服务构建时间用作version
}
type Logger struct {
Level string `json:"level"`
}
type Rabbitmq struct {
Host string `json:"host"`
Port string `json:"port"`
Username string `json:"username"`
Password string `json:"password"`
VHost string `json:"v_host"`
}
type Mysql struct {
Host string `json:"host"`
Port string `json:"port"`
Username string `json:"username"`
Password string `json:"password"`
DbName string `json:"db_name"`
}
type Redis struct {
Host string `json:"host"`
Port string `json:"port"`
Password string `json:"password"` // fox379@@zyxi
DBIndex int `json:"db_index"`
}
type ClickHouse struct {
Host string `json:"host"`
Port string `json:"port"`
Username string `json:"username"`
Password string `json:"password"`
DbName string `json:"db_name"`
}
type Nats struct {
Address []string `json:"address"`
}
type Etcd struct {
Address []string `json:"address"`
Username string `json:"username"`
Password string `json:"password"`
}