config.go 195 B

123456789101112
  1. package config
  2. import (
  3. "github.com/tal-tech/go-zero/rest"
  4. "github.com/tal-tech/go-zero/zrpc"
  5. )
  6. type Config struct {
  7. rest.RestConf
  8. Deduplication zrpc.RpcClientConf // 手动代码
  9. }