github.com/randomtask1155/cli@v6.41.1-0.20181227003417-a98eed78cbde+incompatible/actor/v7action/ssh_actor.go (about)

     1  package v7action
     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  }