// src/filtering/mod.rs
// Declare the sub-modules within the filtering module
// <-- ADDED
// <-- ADDED
// Re-export the functions needed by other parts of the crate (like discovery)
// Use pub(crate) to make them accessible within the crate but not outside.
pub use passes_extension_filters;
pub use is_file_type;
pub use is_lockfile; // <-- ADDED export
pub use check_process_last;
pub use passes_size_filter;
pub use is_likely_text; // <-- ADDED export