//! Unix domain socket IPC server for local SDK-to-runtime communication.
pub use ;
pub use IpcServer;
use HashMap;
use Arc;
use ;
/// Shared map from connection ID to the per-connection outbound response sender.
///
/// The IPC server inserts an entry when a connection is accepted and removes it
/// when the connection closes. The pipeline reads from this map to route
/// `IpcResponse::ViolationAlert` back to the originating SDK client.
pub type ResponseRouter = ;
/// Create an empty [`ResponseRouter`].