github.com/loggregator/cli@v6.33.1-0.20180224010324-82334f081791+incompatible/actor/sharedaction/config.go (about) 1 package sharedaction 2 3 //go:generate counterfeiter . Config 4 5 // Config a way of getting basic CF configuration 6 type Config interface { 7 AccessToken() string 8 BinaryName() string 9 HasTargetedOrganization() bool 10 HasTargetedSpace() bool 11 RefreshToken() string 12 Verbose() (bool, []string) 13 }