//! Core processing modules
//!
//! This module contains the main business logic for audiobook processing:
//! - Scanner: Directory scanning and book folder discovery
//! - Analyzer: Audio file analysis and quality detection
//! - Processor: Single book processing (FFmpeg, metadata, chapters)
//! - BatchProcessor: Parallel batch processing
pub use Scanner;
pub use Analyzer;
pub use Processor;
pub use BatchProcessor;
pub use ;
pub use ;
pub use ;
pub use M4bMerger;