Request performs http request
(ctx context.Context, method, rawURL string, headers map[string]interface{}, postData interface{}, opaque bool)
| 32 | type IHTTP interface { |
| 33 | // Request performs http request |
| 34 | Request(ctx context.Context, method, rawURL string, headers map[string]interface{}, postData interface{}, opaque bool) (*Response, error) |
| 35 | // RequestRaw performs raw http request |
| 36 | RequestRaw(ctx context.Context, method, rawURL string, headers map[string]string, rawData string) (*Response, error) |
| 37 | } |
no outgoing calls
no test coverage detected