1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use std::result;

use ex3_node_error::Error;

pub use bip::bip44;

pub type Result<T> = result::Result<T, Error>;

mod bip;

#[cfg(feature = "secp256k1")]
pub mod secp256k1;

#[cfg(feature = "util")]
pub mod address;
mod error;
#[cfg(feature = "util")]
pub mod hash;
#[cfg(feature = "util")]
pub mod verify;