62 lines
1.6 KiB
Go
62 lines
1.6 KiB
Go
package config
|
||
|
||
// Common中只有Special会动态更新,Special是各类服务自己需要及时更新的配置信息
|
||
type Common[T any] struct {
|
||
ServiceType int `json:"service_type"`
|
||
Logger Logger `json:"logger"`
|
||
Etcd Etcd `json:"etcd"`
|
||
Redis Redis `json:"redis"`
|
||
Nats Nats `json:"nats"`
|
||
Mysql Mysql `json:"mysql"`
|
||
MysqlLog Mysql `json:"mysql_log"`
|
||
Special *T `json:"special"`
|
||
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"`
|
||
}
|