//! Unified bootstrap library for Modkit modules
//!
//! This crate provides bootstrap functionality for both host (in-process) and
//! `OoP` (out-of-process) Modkit modules.
//!
//! ## Modules
//!
//! - [`config`]: Configuration types and utilities
//! - [`host`]: Host/in-process bootstrap - logging, signals, and paths
//! - [`oop`]: Out-of-process module bootstrap - lifecycle management with `DirectoryService`
//! (requires the `oop` feature)
//!
//! ## Backends
//!
//! Backend types for spawning `OoP` modules have been moved to `modkit::backends`.
// Re-export commonly used config types at crate root for convenience
pub use ;
// Re-export host types for convenience
pub use ;
pub use ;