1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
pub mod entry;
pub mod common;
pub mod types;
pub mod conversion;

pub use types::{
    Error,
    Log,
};
pub use entry::{
    err,
    err_with,
    agg_err,
    agg_err_with,
    fatal,
    StandardFlag,
    StandardLog,
};
pub use common::{
    DebugDisplay,
    Flag,
    FlagStyle,
};
pub use conversion::{
    ErrContext,
    ResultContext,
};

/// Re-exported dependencies used in interfaces, etc.
pub mod republish {
    pub use console;
}