net-shell 0.4.3

A script execution and variable extraction framework with SSH remote execution and local execution support, pipeline orchestration, and flexible variable extraction via regex.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod config;
pub mod executor;
pub mod ssh;
pub mod vars;
pub mod models;
pub mod template;

// 重新导出主要类型,方便外部使用
pub use executor::RemoteExecutor;
pub use models::*;
pub use template::TemplateEngine;