Delete sends a DELETE request using the default client.
(url string, cfg ...Config)
| 1022 | |
| 1023 | // Delete sends a DELETE request using the default client. |
| 1024 | func Delete(url string, cfg ...Config) (*Response, error) { |
| 1025 | return C().Delete(url, cfg...) |
| 1026 | } |
| 1027 | |
| 1028 | // Options sends an OPTIONS request using the default client. |
| 1029 | func Options(url string, cfg ...Config) (*Response, error) { |