github.com/dcarley/cf-cli@v6.24.1-0.20170220111324-4225ff346898+incompatible/actor/sharedaction/actor.go (about) 1 // Package sharedaction handles all operations that do not require a cloud 2 // controller 3 package sharedaction 4 5 // Actor handles all shared actions 6 type Actor struct{} 7 8 // NewActor returns an Actor with default settings 9 func NewActor() Actor { 10 return Actor{} 11 }