File size: 275 Bytes
6b356c4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | pub mod client;
// pub(crate) mod impls;
pub mod model;
pub mod time;
pub mod utils;
pub mod build {
#[cfg(debug_assertions)]
include!("../target/debug/build/build_info.rs");
#[cfg(not(debug_assertions))]
include!("../target/release/build/build_info.rs");
}
|