config.go 114 B

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