1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Nakamoto's client library.
#![allow(clippy::inconsistent_struct_constructor)]
#![allow(clippy::type_complexity)]
#![deny(missing_docs, unsafe_code)]
mod client;
mod error;
mod event;
mod peer;
mod service;

pub use client::*;
pub mod handle;

#[cfg(test)]
mod tests;