#[macro_use]
extern crate serde_derive;
extern crate serde;
extern crate serde_json;
extern crate url;
pub mod apis;
pub mod models;
pub mod clients;
#[cfg(feature = "tower-hyper")]
pub mod tower {
pub use crate::clients::tower as client;
}
#[cfg(feature = "actix")]
pub mod actix {
#[cfg(feature = "actix-client")]
pub use crate::clients::actix as client;
#[cfg(feature = "actix-server")]
pub use crate::apis::actix_server as server;
}