scirs2_core/advanced_ecosystem_integration.rs
1//! Advanced Mode Ecosystem Integration (Refactored)
2//!
3//! This module has been refactored to comply with the 2000-line policy.
4//! The original implementation has been split into multiple focused modules.
5
6// Re-export everything from the submodules
7pub use self::communication::*;
8pub use self::coordinator::*;
9pub use self::performance::*;
10pub use self::resources::*;
11pub use self::types::*;
12pub use self::workflow::*;
13
14// Module declarations
15mod communication;
16mod coordinator;
17mod performance;
18mod resources;
19mod types;
20mod workflow;