1#![deny(
2  unstable_features,
3  unused_must_use,
4  unused_mut,
5  unused_imports,
6  unused_import_braces
7)]
8#![allow(dead_code)]
9pub mod client;
10pub mod config;
11mod errors;
12pub mod model;
13pub mod rest;
14mod result;
15pub(crate) mod serde_helpers;
16mod util;
17pub mod websocket_stream;