(url string, rfs ...RequestFunc)
| 63 | } |
| 64 | |
| 65 | func Head(url string, rfs ...RequestFunc) (*resty.Response, error) { |
| 66 | return New().Head(url, rfs...) |
| 67 | } |
| 68 | |
| 69 | func Options(url string, rfs ...RequestFunc) (*resty.Response, error) { |
| 70 | return New().Options(url, rfs...) |