PATCH send PATCH requests
()
| 163 | |
| 164 | // PATCH send PATCH requests |
| 165 | func (req *Request) PATCH() (*Response, error) { |
| 166 | req.method = http.MethodPatch |
| 167 | return req.push() |
| 168 | } |
| 169 | |
| 170 | // Do a request |
| 171 | func (req *Request) Do(method string, data interface{}) (*Response, error) { |