()
| 110 | //h.HttpTransport.DisableKeepAlives = true |
| 111 | } |
| 112 | func (h *Http) IgnoreSSL() { |
| 113 | h.HttpTransport.TLSClientConfig = &tls.Config{ |
| 114 | InsecureSkipVerify: true, |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | func (h *Http) SetProxy(proxyUrl string) *Http { |
| 119 | u, _ := url.Parse(proxyUrl) |
no outgoing calls
no test coverage detected