(url string, authorization *Authorization, header http.Header, body io.Reader, contentLength int64)
| 25 | } |
| 26 | |
| 27 | func NewHttpPutRequest(url string, authorization *Authorization, header http.Header, body io.Reader, contentLength int64) *HttpRequest { |
| 28 | return NewHttpRequest(http.MethodPut, url, authorization, header, body, contentLength) |
| 29 | } |
| 30 | |
| 31 | func NewHttpPatchRequest(url string, authorization *Authorization, header http.Header, body io.Reader, contentLength int64) *HttpRequest { |
| 32 | return NewHttpRequest(http.MethodPatch, url, authorization, header, body, contentLength) |
no test coverage detected