(reqUrl string,
reqParams map[string]interface{}, headers map[string]string)
| 115 | } |
| 116 | |
| 117 | func (target HttpClient) PostForm(reqUrl string, |
| 118 | reqParams map[string]interface{}, headers map[string]string) (string, error) { |
| 119 | return postRetry(target, reqUrl, reqParams, "application/x-www-form-urlencoded", nil, headers) |
| 120 | } |
| 121 | |
| 122 | func (target HttpClient) PostFile(reqUrl string, |
| 123 | reqParams map[string]interface{}, files []UploadFile, headers map[string]string) (string, error) { |
nothing calls this directly
no test coverage detected