(operatorConfig OperatorConfig, endpoint string, qParams ...map[string]string)
| 80 | } |
| 81 | |
| 82 | func HTTPDelete(operatorConfig OperatorConfig, endpoint string, qParams ...map[string]string) ([]byte, error) { |
| 83 | req, err := operatorRequest(operatorConfig, http.MethodDelete, endpoint, nil, qParams...) |
| 84 | if err != nil { |
| 85 | return nil, err |
| 86 | } |
| 87 | return makeOperatorRequest(operatorConfig, req) |
| 88 | } |
| 89 | |
| 90 | type HTTPUploadInput struct { |
| 91 | FilePaths map[string]string |
no test coverage detected