github.com/franc20/ayesa_sap@v7.0.0-beta.28.0.20200124003224-302d4d52fa6c+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 CurrentUserName() (string, error) 10 HasTargetedOrganization() bool 11 HasTargetedSpace() bool 12 RefreshToken() string 13 TargetedOrganizationName() string 14 Verbose() (bool, []string) 15 }