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
- RedisDB entity.RedisDBStuct
- Es entity.EsStruct
- MongoDb entity.MongoDb
- }
|