Files
pubky-core/kytz/src/lib.rs
2023-12-12 16:25:35 +03:00

10 lines
190 B
Rust

// #![allow(unused)]
pub mod crypto;
pub mod error;
// Re-exports
pub use error::Error;
// Alias Result to be the crate Result.
pub type Result<T, E = Error> = core::result::Result<T, E>;