1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//! Ledger utilites and transports

#![warn(missing_docs)]
#![warn(unused_extern_crates)]

/// APDU utilities.
pub mod common;

/// Ledger-related error enum
pub mod errors;

/// Ledger transports. Contains native HID and wasm-bindgen
pub mod transports;

pub use {
    common::{APDUAnswer, APDUCommand},
    errors::LedgerError,
    transports::Ledger,
};