okane_core/lib.rs
1//! okane-core crate is the library to support
2//! [okane](https://crates.io/crates/okane) CLI tool functionality,
3//! withreusable components.
4
5pub mod format;
6pub mod load;
7pub mod parse;
8pub mod report;
9pub mod syntax;
10pub(crate) mod testing;
11
12#[cfg(test)]
13#[ctor::ctor]
14fn unit_test_logger() {
15 let _ = env_logger::builder()
16 .is_test(true)
17 .filter_level(log::LevelFilter::max())
18 .try_init();
19}