//! Line-delimited JSON-RPC framing (`{ id, verb, args }` ↔
//! `{ id, result | error | event | end }`) with two interchangeable
//! transports — a Unix-domain-socket server / client for local
//! control planes, and an HTTP/1.1 server / client that streams the
//! same frames as `Transfer-Encoding: chunked` NDJSON.
//!
//! See the README for the gap this fills (daemon ↔ CLI control planes
//! that everyone re-implements).
pub use ;
pub use HttpMgmtClient;
pub use ;
pub use ;
pub use ;