1#![allow(clippy::inconsistent_struct_constructor)]
3#![allow(clippy::type_complexity)]
4#![deny(missing_docs, unsafe_code)]
5mod client;
6mod error;
7mod event;
8mod peer;
9mod service;
10
11pub use client::*;
12pub mod handle;
13
14#[cfg(test)]
15mod tests;