PluginConnection represents a connection to a plugin repo.
| 17 | |
| 18 | // PluginConnection represents a connection to a plugin repo. |
| 19 | type PluginConnection struct { |
| 20 | HTTPClient *http.Client |
| 21 | proxyReader ProxyReader // nolint |
| 22 | } |
| 23 | |
| 24 | // NewConnection returns a new PluginConnection |
| 25 | func NewConnection(skipSSLValidation bool, dialTimeout time.Duration) *PluginConnection { |
nothing calls this directly
no outgoing calls
no test coverage detected