mirror of
https://github.com/aljazceru/pubky-core.git
synced 2026-01-11 02:04:21 +01:00
10 lines
190 B
Rust
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>;
|