123456789101112131415161718192021 |
- package config
- import (
- "bp.jydev.jianyu360.cn/BaseService/biCenter/entity"
- "github.com/zeromicro/go-zero/rest"
- )
- type Config struct {
- rest.RestConf
- Gateway struct {
- ServerCode string
- Etcd []string
- }
- PublicKey string
- }
- type Db struct {
- Redis entity.RedisStuct `json:"redis"`
- Es entity.EsStruct `json:"es"`
- Mysql entity.Mysql `json:"mysql"`
- }
|