123456789101112131415161718 |
- package config
- import (
- "bp.jydev.jianyu360.cn/SocialPlatform/messageCenter/entity"
- "github.com/zeromicro/go-zero/zrpc"
- )
- type Config struct {
- zrpc.RpcServerConf
- WebRpcPort int64
- MysqlMain entity.MysqlMainStruct
- TestConf zrpc.RpcClientConf
- SurvivalTime int
- }
- type Db struct {
- Redis entity.RedisStuct `json:"redis"`
- }
|