config.go 257 B

123456789101112131415
  1. package config
  2. import (
  3. "github.com/zeromicro/go-zero/zrpc"
  4. "jyBXCore/entity"
  5. )
  6. type Config struct {
  7. zrpc.RpcServerConf
  8. Webrpcport int64
  9. Mysql entity.Mysql
  10. RedisDB entity.RedisDBStuct
  11. Es entity.EsStruct
  12. MongoDB entity.MongoDB
  13. }