microsandbox_agent_client/client.rs
1//! Agent specialization of the shared framed client.
2
3use crate::AgentProtocol;
4
5//--------------------------------------------------------------------------------------------------
6// Types
7//--------------------------------------------------------------------------------------------------
8
9/// Low-level agent connection with native, encoded, raw, stream, and packet APIs.
10pub type AgentClient = microsandbox_protocol_client::Client<AgentProtocol>;