Options sends an OPTIONS request using the default client.
(url string, cfg ...Config)
| 1027 | |
| 1028 | // Options sends an OPTIONS request using the default client. |
| 1029 | func Options(url string, cfg ...Config) (*Response, error) { |
| 1030 | return C().Options(url, cfg...) |
| 1031 | } |
| 1032 | |
| 1033 | // Patch sends a PATCH request using the default client. |
| 1034 | func Patch(url string, cfg ...Config) (*Response, error) { |