js_deobfuscator/engine/mod.rs
1//! Layer 7: Orchestration — Module trait, convergence loop, public API.
2//!
3//! module.rs and error.rs are leaf types with no upward dependencies.
4//! Lower layers (fold/, transform/, etc.) import them freely.
5
6pub mod error;
7pub mod module;
8pub mod config;
9pub mod pipeline;
10pub mod api;