//! The module-preserving front door to the complete Macroonz machine.
//!
//! [`compiler`] bakes a complete generation request, [`macros`] carries the built-in procedural declaration doors, and the feature-gated `harness` module judges what a caller hands it.
//! The facade adds no second API and flattens no owner's vocabulary: every item remains under the crate that defines it.
/// The ordinary callable generation compiler.
pub use macroonz_compiler as compiler;
/// The built-in procedural declaration doors.
pub use macroonz_macros as macros;
/// The independent test harness.
pub use macroonz_harness as harness;