//! 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`].
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.
pub use HealthChecker;
pub use ;