github.com/orange-cloudfoundry/cli@v7.1.0+incompatible/actor/v7action/routing_client.go (about)

     1  package v7action
     2  
     3  import "code.cloudfoundry.org/cli/api/router"
     4  
     5  //go:generate counterfeiter . RoutingClient
     6  
     7  type RoutingClient interface {
     8  	GetRouterGroups() ([]router.RouterGroup, error)
     9  	GetRouterGroupByName(name string) (router.RouterGroup, error)
    10  }