(reqUrl string,
reqParams map[string]interface{}, files []UploadFile, headers map[string]string)
| 120 | } |
| 121 | |
| 122 | func (target HttpClient) PostFile(reqUrl string, |
| 123 | reqParams map[string]interface{}, files []UploadFile, headers map[string]string) (string, error) { |
| 124 | return postRetry(target, reqUrl, reqParams, "multipart/form-data", files, headers) |
| 125 | } |
| 126 | |
| 127 | func postRetry(target HttpClient, reqUrl string, |
| 128 | reqParams map[string]interface{}, contentType string, files []UploadFile, headers map[string]string) (string, error) { |
nothing calls this directly
no test coverage detected