j-agent 12.10.67

Agent engine library for j-cli and j-gui
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Shell 工具统一入口。
//!
//! 对外只暴露一个 `ShellTool`,平台差异分别放在:
//! - `shell/unix.rs`
//! - `shell/windows.rs`

pub(super) use super::ToolResult;
pub(super) use super::background;

#[cfg(unix)]
mod unix;
#[cfg(windows)]
mod windows;

#[cfg(unix)]
pub use unix::ShellTool;
#[cfg(windows)]
pub use windows::PowerShellTool as ShellTool;