github.com/cloudfoundry-community/cloudfoundry-cli@v6.44.1-0.20240130060226-cda5ed8e89a5+incompatible/actor/v2action/router_client.go (about) 1 package v2action 2 3 import "code.cloudfoundry.org/cli/api/router" 4 5 //go:generate counterfeiter . RouterClient 6 7 // RouterClient is a Router API client. 8 type RouterClient interface { 9 GetRouterGroupByName(string) (router.RouterGroup, error) 10 }