//! WS-Management SOAP protocol layer.
//!
//! - `namespaces` -- URI constants for WS-Man actions and resources
//! - `envelope` -- SOAP envelope builders for shell lifecycle operations
//! - `parser` -- response parsers for shell IDs, command IDs, and output streams
pub
pub
pub
// Re-export for internal use
pub use *;
pub use parse_enumerate_response;
// `mod soap` is private at the lib root, so these re-exports are not
// externally visible despite being `pub`. They are marked `pub` (rather
// than `pub(crate)`) so lib.rs can re-export them under the `__internal`
// feature for fuzz targets via `pub use soap::{...}`.
pub use ;
// Re-export ReceiveOutput as fully public so lib.rs can `pub use` it.
pub use ReceiveOutput;