//! Service health monitoring for managed subprocesses.
//!
//! [`HealthChecker`] performs on-demand checks; [`ProcessMonitor`] runs a
//! background loop that reconciles tracked PIDs against the running process
//! table and marks crashed services, aggregating results into a
//! [`HealthSummary`] of per-module [`ModuleHealth`].
pub use HealthChecker;
pub use ;