airsprotocols_mcpserver_filesystem/binary/mod.rs
1//! Binary file processing and format detection
2//!
3//! Handles image processing, PDF processing, and file format detection for MCP operations.
4
5// Layer 1: Standard library imports
6// (None needed for pure module coordinator)
7
8// Layer 2: Third-party crate imports
9// (None needed for pure module coordinator)
10
11// Layer 3: Internal module declarations
12pub mod format;
13pub mod processor;
14
15// Public API re-exports
16pub use format::FormatDetector;
17pub use processor::BinaryProcessor;