(url string, rfs ...RequestFunc)
| 47 | } |
| 48 | |
| 49 | func Post(url string, rfs ...RequestFunc) (*resty.Response, error) { |
| 50 | return New().Post(url, rfs...) |
| 51 | } |
| 52 | |
| 53 | func Patch(url string, rfs ...RequestFunc) (*resty.Response, error) { |
| 54 | return New().Patch(url, rfs...) |