Patch sends a PATCH request using the default client.
(url string, cfg ...Config)
| 1032 | |
| 1033 | // Patch sends a PATCH request using the default client. |
| 1034 | func Patch(url string, cfg ...Config) (*Response, error) { |
| 1035 | return C().Patch(url, cfg...) |
| 1036 | } |
| 1037 | |
| 1038 | // Query sends a QUERY request using the default client. |
| 1039 | func Query(url string, cfg ...Config) (*Response, error) { |