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