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;
11pub mod utility;
12
13#[cfg(test)]
14#[ctor::ctor]
15fn unit_test_logger() {
16 let _ = env_logger::builder()
17 .is_test(true)
18 .filter_level(log::LevelFilter::max())
19 .try_init();
20}