We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f7358c commit 7bb6207Copy full SHA for 7bb6207
httpclient/client.go
@@ -19,7 +19,7 @@ import (
19
"go.uber.org/zap"
20
)
21
22
-type httpExecutor interface {
+type HTTPExecutor interface {
23
// Inherited
24
CloseIdleConnections()
25
Do(req *http.Request) (*http.Response, error)
@@ -40,7 +40,7 @@ type httpExecutor interface {
40
type Client struct {
41
config *ClientConfig
42
Integration *APIIntegration
43
- http httpExecutor
+ http HTTPExecutor
44
Sugar *zap.SugaredLogger
45
Concurrency *concurrency.ConcurrencyHandler
46
}
0 commit comments