// src/filtering/mod.rs
//! Provides standalone functions for file filtering logic.
//!
//! These functions are used by the discovery stage to determine which files
//! should be included in the processing pipeline. They are exposed publicly
//! to allow for their use in other contexts.
// Declare the sub-modules within the filtering module
// Re-export the functions needed by other parts of the crate (like discovery)
// Use pub to make them accessible within the crate and as part of the public library API.
pub use passes_extension_filters;
pub use is_file_type;
pub use is_lockfile;
pub use check_process_last;
pub use passes_size_filter;
pub use ;