Skip to main content

sniff/
analyzer.rs

1use std::sync::Arc;
2
3#[derive(Debug, Clone, PartialEq, Eq)]
4pub enum ReviewProgress {
5    Started { label: String },
6    RetryingEvidence { label: String },
7    Completed,
8}
9
10pub type ReviewProgressCallback = Arc<dyn Fn(ReviewProgress) + Send + Sync>;
11
12#[path = "analyzer_engine.rs"]
13mod core;
14
15pub use core::{Analyzer, analyze, analyze_with_client};