You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
237 B

  1. package sdk
  2. import (
  3. "net/http"
  4. "time"
  5. )
  6. type Config struct {
  7. Timeout time.Duration
  8. HttpTransport *http.Transport `default:""`
  9. Transport http.RoundTripper `default:""`
  10. }
  11. func NewConfig() *Config {
  12. return &Config{}
  13. }