config.go 116 B

1234567891011
  1. package config
  2. import (
  3. "zero/rest"
  4. "zero/rpcx"
  5. )
  6. type Config struct {
  7. rest.RestConf
  8. Rpc rpcx.RpcClientConf
  9. }