vct_core/analysis/mod.rs
1//! Collection and projection of normalized analysis sessions.
2//!
3//! Provider-specific parsing stays in [`crate::session`]. This module collects
4//! those [`crate::models::CodeAnalysis`] values into the canonical batch JSON
5//! dataset, then projects the same values into the compact summaries rendered
6//! by the TUI, text, and table views.
7pub mod aggregator;
8pub mod summary;
9
10pub use aggregator::*;
11pub use summary::*;