//! # Mitoxide
//!
//! A Rust library for remote execution and automation inspired by Mitogen.
//!
//! Mitoxide provides a client-agent architecture for executing commands and transferring
//! files over SSH connections with multiplexed binary RPC protocol.
pub use mitoxide_proto as proto;
/// Error types for the Mitoxide library
/// Session management and connection handling
/// Execution context for remote operations
/// Connection routing and multiplexing
pub use MitoxideError;
pub use ;
pub use Context;
pub use Router;
/// Result type alias for Mitoxide operations
pub type Result<T> = Result;