1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#[macro_use] extern crate cli_log;

pub mod args;
pub mod ask;
pub mod dirs;
pub mod dup;
pub mod dup_report;
pub mod file_pair;
pub mod ext;
pub mod hash;
pub mod removal_report;

pub use {
    args::*,
    ask::*,
    dirs::*,
    dup::*,
    dup_report::*,
    file_pair::*,
    ext::*,
    hash::*,
    removal_report::*,
};