Skip to main content

Mountain/IPC/Connection/
mod.rs

1#![allow(non_snake_case)]
2
3//! Connection lifecycle, pooling, and health monitoring for IPC. Submodules:
4//! `Manager` (pool + handles), `Types` (`ConnectionHandle`, `Stats`),
5//! `Health` (background checker). Callers spell the full path; no `pub use`.
6
7pub mod Health;
8pub mod Manager;
9pub mod Types;