config.go 235 B

123456789101112131415
  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. Gateway struct {
  9. ServerCode string
  10. Etcd []string
  11. }
  12. MessageCenter zrpc.RpcClientConf
  13. }