microsandbox_agentd/lib.rs
1//! `microsandbox-agentd` is the PID 1 init process and agent daemon
2//! that runs inside the microVM guest.
3
4#![warn(missing_docs)]
5
6mod error;
7
8//--------------------------------------------------------------------------------------------------
9// Exports
10//--------------------------------------------------------------------------------------------------
11
12pub mod agent;
13pub mod clock;
14pub mod fs;
15pub mod heartbeat;
16pub mod init;
17pub mod network;
18pub mod serial;
19pub mod session;
20pub mod tls;
21
22pub use error::*;