Skip to main content

atd_tools_shell/
lib.rs

1//! Shell tools: shell.exec (/bin/sh) and shell.pwsh (PowerShell).
2//!
3//! Subprocess execution with configurable timeouts; shared capture helper
4//! reused across both tools.
5
6pub mod exec;
7pub mod pwsh;
8pub mod shared;
9
10pub use exec::ShellExecTool;
11pub use pwsh::ShellPwshTool;