(url string, rfs ...RequestFunc)
| 59 | } |
| 60 | |
| 61 | func Delete(url string, rfs ...RequestFunc) (*resty.Response, error) { |
| 62 | return New().Delete(url, rfs...) |
| 63 | } |
| 64 | |
| 65 | func Head(url string, rfs ...RequestFunc) (*resty.Response, error) { |
| 66 | return New().Head(url, rfs...) |