github.com/cloudfoundry-community/cloudfoundry-cli@v6.44.1-0.20240130060226-cda5ed8e89a5+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 }