bohay 0.8.3

Next-Gen Agents multiplexer
1
2
3
4
5
6
7
8
9
10
//! Inter-process layer over local sockets: the JSON control API (`api`) agents
//! drive bohay with, the binary frame `protocol`, the thin `client` / headless
//! `server` of the render path, and the cross-platform `transport` (Unix-domain
//! sockets / Windows named pipes). See docs/08-ipc-socket-api.md.

pub mod api;
pub mod client;
pub mod protocol;
pub mod server;
pub mod transport;