//! Core types and traits for the scanbridge library.
//!
//! This module provides the fundamental building blocks used throughout
//! the library:
//!
//! - [`types`] - Common types like `ScanOutcome`, `ThreatInfo`, `FileHash`
//! - [`traits`] - The `Scanner` trait and configuration interfaces
//! - [`error`] - Structured error types
//! - [`input`] - File input abstraction
//! - [`hasher`] - BLAKE3-based file hashing
//! - [`result`] - Scan result structures
// Re-export commonly used types at the core level
pub use ;
pub use FileHasher;
pub use FileInput;
pub use ;
pub use ;
pub use ;