您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
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. }