config.go 267 B

12345678910111213141516
  1. package config
  2. import (
  3. "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. Sensitive entity.Sensitive
  13. }