github.com/mook-as/cf-cli@v7.0.0-beta.28.0.20200120190804-b91c115fae48+incompatible/actor/v3action/ssh_actor.go (about)

     1  package v3action
     2  
     3  import "code.cloudfoundry.org/cli/actor/sharedaction"
     4  
     5  //go:generate counterfeiter . SSHActor
     6  
     7  type SSHActor interface {
     8  	ExecuteSecureShell(sshOptions sharedaction.SSHOptions) error
     9  }