1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod client;

mod path;
pub use path::{Path, PathElement};

pub mod types;

mod generated;
pub use generated::*;

#[cfg(feature = "reqwest-client")]
mod reqwest_client;

#[cfg(feature = "reqwest-client")]
pub use reqwest_client::Client as ReqwestClient;