1//! IPC communication between CLI and daemon 2//! 3//! Uses Unix domain sockets on Unix/macOS and named pipes on Windows 4//! via the interprocess crate. 5 6pub mod client; 7pub mod protocol; 8pub mod transport; 9 10pub use client::DaemonClient;