config.go 161 B

1234567891011
  1. package config
  2. import "github.com/zeromicro/go-zero/rest"
  3. type Config struct {
  4. rest.RestConf
  5. Gateway struct {
  6. ServerCode string
  7. Etcd []string
  8. }
  9. }