github.com/jghiloni/cli@v6.28.1-0.20170628223758-0ce05fe032a2+incompatible/command/shared_actor.go (about)

     1  package command
     2  
     3  import "code.cloudfoundry.org/cli/actor/sharedaction"
     4  
     5  //go:generate counterfeiter . SharedActor
     6  
     7  type SharedActor interface {
     8  	CheckTarget(config sharedaction.Config, targetedOrganizationRequired bool, targetedSpaceRequired bool) error
     9  }