123456789101112131415161718192021222324252627 |
- package config
- import (
- "bp.jydev.jianyu360.cn/BaseService/entManageApplication/entity"
- "github.com/zeromicro/go-zero/core/logx"
- "github.com/zeromicro/go-zero/zrpc"
- )
- type Config struct {
- zrpc.RpcServerConf
- UserCenterRpc string
- PowerCheckRpc string
- ResourceCenterRpc string
- ResourceRpc string
- Logx logx.LogConf
- Mysql struct {
- JianYu *entity.MysqlDb
- }
- Mongo struct {
- Qfw struct {
- MongodbAddr string
- Size int
- DbName string
- }
- }
- RedisAddrs string
- }
|