1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
/*!
see https://github.com/aaronabramov/k9 for high level description of the library
*/

#[allow(clippy::unknown_clippy_lints)]
#[allow(clippy::unnested_or_patterns)]
#[allow(clippy::mutex_atomic)]
pub mod assertions;
pub mod config;
pub mod string_diff;

mod constants;
mod paths;
mod types;
mod utils;

// re-export things so macros have access to them
pub mod __macros__ {
    pub use colored;
}