github.com/liamawhite/cli-with-i18n@v6.32.1-0.20171122084555-dede0a5c3448+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 }