github.com/LukasHeimann/cloudfoundrycli@v7.1.0+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  	Config Config
     8  }
     9  
    10  // NewActor returns an Actor with default settings
    11  func NewActor(config Config) *Actor {
    12  	return &Actor{
    13  		Config: config,
    14  	}
    15  }