11 lines
429 B
Go
11 lines
429 B
Go
|
package conf
|
||
|
|
||
|
import "service/library/configcenter"
|
||
|
|
||
|
type ConfigSt struct {
|
||
|
*configcenter.DefaultConfig `yaml:",inline"` // default
|
||
|
RedisQueue *configcenter.RedisConfig // redis 消息队列
|
||
|
RedisStore *configcenter.RedisConfig // redis 存储
|
||
|
SD *configcenter.ConsulServiceDiscovery `json:"sd" yaml:"sd"` // 服务发现
|
||
|
}
|