github.com/jghiloni/cli@v6.28.1-0.20170628223758-0ce05fe032a2+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  }