123456789101112131415161718192021 |
- package config
- import (
- "bp.jydev.jianyu360.cn/BaseService/powerCheckCenter/entity"
- "github.com/zeromicro/go-zero/zrpc"
- )
- type Config struct {
- zrpc.RpcServerConf
- MysqlMain entity.MysqlMainStruct
- BaseMysqlMain entity.MysqlMainStruct
- Mongo struct {
- Main *entity.MongoStruct
- }
- RedisAddrees []string
- AlertRemind struct {
- Addr string
- Toppic string
- Id string
- }
- }
|