github.com/liamawhite/cli-with-i18n@v6.32.1-0.20171122084555-dede0a5c3448+incompatible/command/shared_actor.go (about)

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