github.com/dcarley/cf-cli@v6.24.1-0.20170220111324-4225ff346898+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 }