github.com/orange-cloudfoundry/cli@v7.1.0+incompatible/api/router/connection.go (about) 1 // Package router contains utilities to make call to the router API 2 package router 3 4 //go:generate counterfeiter . Connection 5 6 // Connection creates and executes http requests 7 type Connection interface { 8 Make(request *Request, passedResponse *Response) error 9 }