config.go 257 B

12345678910111213141516
  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. Webrpcport int64
  9. Gateway struct {
  10. ServerCode string
  11. Etcd []string
  12. }
  13. Bxcollection zrpc.RpcClientConf
  14. }