123456789101112131415161718 |
- package config
- import (
- "github.com/zeromicro/go-zero/zrpc"
- "jyBXBase/entity"
- )
- type Config struct {
- zrpc.RpcServerConf
- Webrpcport int64
- }
- type Db struct {
- MysqlMain entity.MysqlStruct `json:"mysqlMain"`
- RedisDB entity.RedisDBStuct `json:"redisDB"`
- Es entity.EsStruct `json:"es"`
- MongoDB entity.MongoDB `json:"mongoDB"`
- }
|