11 lines
301 B
Rust
11 lines
301 B
Rust
//! SSH module — command building & runner-script execution.
|
|
|
|
pub mod command;
|
|
pub mod runner;
|
|
|
|
pub use command::{build_ssh_command, shell_quote, SshCommand};
|
|
pub use runner::{
|
|
launch, launch_interactive, launch_sftp, launch_ssh, cleanup_runfiles, BgMode, LaunchSpec,
|
|
Launched, TermMode,
|
|
};
|