config.go 295 B

1234567891011121314151617
  1. package config
  2. import (
  3. "github.com/zeromicro/go-zero/rest"
  4. "github.com/zeromicro/go-zero/zrpc"
  5. )
  6. type Config struct {
  7. rest.RestConf
  8. MessageCenter zrpc.RpcClientConf
  9. Social zrpc.RpcClientConf
  10. Gateway struct {
  11. ServerCode string
  12. Etcd []string
  13. }
  14. WebRpcPort int64
  15. }