1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
// when i have time:
// TODO: add optional multithreading
// TODO: verbose option
// TODO: TESTS

/// Functions parsing and processing args
pub mod cli;
/// error returned by the program
pub mod error;
/// Functions reading file, compressing/decompressing them, 
/// and writing the results to file
mod comp;
/// Various utility functions
mod utils;