config.go 357 B

123456789101112131415161718
  1. package config
  2. import (
  3. "app.yhyue.com/moapp/jyInfo/entity"
  4. "github.com/zeromicro/go-zero/zrpc"
  5. )
  6. type Config struct {
  7. zrpc.RpcServerConf
  8. Webrpcport int64
  9. MysqlMain entity.MysqlMainStruct
  10. Redis entity.RedisStuct
  11. Nsq entity.NsqStruct
  12. Es entity.EsStruct
  13. Sensitive entity.Sensitive
  14. ManagerUserId []string
  15. }