Skip to main content

dk_core/
lib.rs

1/// The version of the dk-core crate (set at compile time).
2pub const VERSION: &str = env!("CARGO_PKG_VERSION");
3
4pub mod error;
5pub mod types;
6
7pub use error::{Error, Result};
8pub use types::*;