1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
extern crate core;

pub mod appender;
pub mod bencher;
pub mod config;
pub mod consts;
pub mod error;
pub mod fast_log;
pub mod filter;
pub mod formats;
pub mod plugin;
pub mod runtime;


pub use crate::config::Config;
pub use crate::fast_log::*;
pub use crate::formats::*;
pub use runtime::*;