tanoshi_lib/lib.rs
1pub mod error;
2pub mod extensions;
3pub mod models;
4pub mod prelude;
5
6/// This is used to ensure both application and extension use the same version
7pub static LIB_VERSION: &str = env!("CARGO_PKG_VERSION");
8/// Rust doesn't have stable ABI, this is used to ensure `rustc` version is match
9pub static RUSTC_VERSION: &str = env!("RUSTC_VERSION");