(request *Request)
| 240 | } |
| 241 | |
| 242 | func (gateway Gateway) PerformRequest(request *Request) (*http.Response, error) { |
| 243 | return gateway.doRequestHandlingAuth(request) |
| 244 | } |
| 245 | |
| 246 | func (gateway Gateway) performRequestForResponseBytes(request *Request) ([]byte, http.Header, *http.Response, error) { |
| 247 | rawResponse, err := gateway.doRequestHandlingAuth(request) |
no test coverage detected