Skip to main content

cc_audit/scanner/
mod.rs

1//! Security scanner module.
2//!
3//! This module re-exports scanner implementations from engine/scanners/
4//! for backward compatibility. New code should import directly from
5//! `crate::engine::scanners` or `crate::engine`.
6
7// Re-export everything from engine/scanners for backward compatibility
8pub use crate::engine::scanners::*;
9
10// Re-export Scanner traits and ScannerConfig from engine/scanner
11pub use crate::engine::scanner::{ContentScanner, Scanner, ScannerConfig};