1#![allow(
2 clippy::redundant_field_names,
3 clippy::new_without_default,
4 clippy::large_enum_variant,
5 clippy::len_zero,
6 clippy::needless_return,
7 clippy::redundant_closure,
8 dead_code,
9 non_camel_case_types
10)]
11
12#[macro_use]
13extern crate serde_derive;
14
15#[cfg(feature = "async")]
16extern crate futures;
17#[cfg(feature = "async")]
18extern crate hyper;
19#[cfg(feature = "sync")]
20extern crate reqwest;
21extern crate serde;
22extern crate serde_json;
23extern crate url;
24
25#[cfg(feature = "async")]
26pub mod async;
27pub mod models;
28#[cfg(feature = "sync")]
29pub mod sync;
30
31pub mod parameters;