Skip to main content

drep/analysis/
mod.rs

1//! Analysis results and the vocabulary they are reported in.
2//!
3//! Types live at one public path each - no facade re-exports, so consumers
4//! cannot pick arbitrarily between `analysis::Severity` and
5//! `analysis::findings::Severity` and drift apart.
6
7pub mod code_quality;
8pub mod findings;
9pub mod payload;
10pub mod prompt;
11pub(crate) mod response_contract;
12pub mod result;
13
14#[cfg(test)]
15mod tests;