1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//! # Mitoxide Agent //! //! Core agent functionality for remote execution. #![warn(missing_docs)] /// Agent main loop and frame processing pub mod agent; /// Request handlers for different operation types pub mod handlers; /// Agent-side routing for multiplexed streams pub mod router; /// Agent bootstrap and platform detection pub mod bootstrap;