Skip to main content

remote_shell/
lib.rs

1pub mod slave;
2pub mod common;
3pub mod host;
4#[macro_use]
5extern crate anyhow;
6pub use slave::slave_entrance::dispatch;
7pub use host::shell::run_shell;
8pub use host::shell_process::ShellProcess;
9pub use host::cmd_process::CmdProcess;
10