(url string, rfs ...RequestFunc)
| 51 | } |
| 52 | |
| 53 | func Patch(url string, rfs ...RequestFunc) (*resty.Response, error) { |
| 54 | return New().Patch(url, rfs...) |
| 55 | } |
| 56 | |
| 57 | func Put(url string, rfs ...RequestFunc) (*resty.Response, error) { |
| 58 | return New().Put(url, rfs...) |