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 acknowledgements;
8pub mod code_quality;
9pub mod findings;
10pub mod payload;
11pub mod prompt;
12pub(crate) mod response_contract;
13pub mod result;
14
15#[cfg(test)]
16mod tests;