//! Aggregation layer (L6).
//!
//! This module aggregates findings from the detection engine:
//! - Collects findings from multiple sources
//! - Calculates risk scores
//! - Generates summaries
//! - Handles baseline comparison
//!
//! The aggregator takes raw findings from L5 and produces
//! a comprehensive ScanResult for the output layer (L7).
// Re-export from existing modules (will be moved here in Phase 10)
pub use crate;
pub use crate;
pub use crate;
// Re-export local modules
pub use FindingCollector;
pub use SummaryBuilder;