microsandbox 0.3.14

`microsandbox` is the core library for the microsandbox project.
1
2
3
4
5
6
7
8
9
10
11
12
//! Agent communication with the guest VM.
//!
//! The [`AgentClient`] provides request/response messaging with agentd
//! through the sandbox process's agent relay socket.

mod client;

//--------------------------------------------------------------------------------------------------
// Re-Exports
//--------------------------------------------------------------------------------------------------

pub use client::AgentClient;