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;
10mod config;
11mod errors;
12pub mod model;
13pub mod rest;
14pub(crate) mod serde_helpers;
15mod util;
16pub mod websocket;