1//! Connection lifecycle, pooling, and health monitoring for IPC. Submodules:
2//! `Manager` (pool + handles), `Types` (`ConnectionHandle`, `Stats`),
3//! `Health` (background checker). Callers spell the full path; no `pub use`.
45pub mod Health;
67pub mod Manager;
89pub mod Types;