123456789101112131415161718 |
- package config
- import (
- "app.yhyue.com/moapp/jyInfo/entity"
- "github.com/zeromicro/go-zero/zrpc"
- )
- type Config struct {
- zrpc.RpcServerConf
- Webrpcport int64
- MysqlMain entity.MysqlMainStruct
- Redis entity.RedisStuct
- Nsq entity.NsqStruct
- Es entity.EsStruct
- Sensitive entity.Sensitive
- ManagerUserId []string
- }
|