scanbridge 0.3.0

A unified, pluggable API for malware scanning with circuit breakers, policy enforcement, and audit logging
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Scan manager for orchestrating scans across multiple engines.
//!
//! The `ScanManager` coordinates scanning across one or more backends,
//! handling retries, timeouts, and result aggregation.

mod queue;
mod retry;
mod scan_manager;

pub use queue::{ScanHandle, ScanQueue};
pub use retry::RetryConfig;
pub use scan_manager::{ScanManager, ScanManagerBuilder, ScanManagerConfig};