//! Ephemeral user-space SSH for OxDock scripts.
//!
//! This crate exposes an `SSH` host module through the [`Engine`]
//! facade: `SSH_SERVE` spins up a loopback SSH server with ephemeral
//! credentials held only in memory, while `SSH_DEQUEUE` exposes each
//! session's metadata before `SSH_PUMP_CHANNEL` bridges it through
//! explicit DSL pipes (`SSH_ACCEPT` combines both for simple loops).
//! No OS users, no `sshd_config`, and no Docker are involved; killing
//! the process removes every trace.
//!
//! [`Engine`]: oxdock_core::Engine
pub use ;
use HostModule;
pub use DefaultProcessManager;
pub use ;
/// The `SSH` host module with the default process manager.