1 2 3 4 5 6 7 8 9 10 11
//! HEAL core: shared types, config, event-log rotation, and state management. pub mod config; pub mod error; pub mod eventlog; pub mod paths; pub mod snapshot; pub mod state; pub use error::{Error, Result}; pub use paths::HealPaths;