1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15

mod content_match;
mod content_search_result;
mod magic_numbers;
mod extensions;
mod needle;

pub use {
    content_match::ContentMatch,
    content_search_result::ContentSearchResult,
    needle::Needle,
};

pub const MAX_FILE_SIZE: usize = 10 * 1024 * 1024;