1234567891011121314151617 |
- package config
- import (
- "bp.jydev.jianyu360.cn/SocialPlatform/knowledgeBase/entity"
- "github.com/zeromicro/go-zero/zrpc"
- )
- type Config struct {
- zrpc.RpcServerConf
- WebRpcPort int64
- MysqlMain entity.MysqlMainStruct
- Es entity.EsStruct
- Segment string
- TestConf zrpc.RpcClientConf
- UserCenterConf zrpc.RpcClientConf
- FindCount int
- }
|