(method string, url string, authorization *Authorization, header http.Header, body io.Reader, contentLength int64)
| 33 | } |
| 34 | |
| 35 | func NewHttpRequest(method string, url string, authorization *Authorization, header http.Header, body io.Reader, contentLength int64) *HttpRequest { |
| 36 | return &HttpRequest{"HTTP/1.1", method, url, authorization, header, body, contentLength} |
| 37 | } |
no outgoing calls
no test coverage detected