config.go 189 B

123456789101112
  1. package config
  2. import (
  3. "github.com/tal-tech/go-zero/rest"
  4. "github.com/tal-tech/go-zero/rpcx"
  5. )
  6. type Config struct {
  7. rest.RestConf
  8. Add rpcx.RpcClientConf
  9. Check rpcx.RpcClientConf
  10. }