github.com/randomtask1155/cli@v6.41.1-0.20181227003417-a98eed78cbde+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  }