github.com/loggregator/cli@v6.33.1-0.20180224010324-82334f081791+incompatible/api/plugin/connection.go (about) 1 package plugin 2 3 import "net/http" 4 5 //go:generate counterfeiter . Connection 6 7 // Connection creates and executes http requests 8 type Connection interface { 9 Make(request *http.Request, passedResponse *Response, proxyReader ProxyReader) error 10 }