#![doc = include_str!("../README.md")]
mod configuration;
mod error;
mod request;
mod util;
pub use configuration::Configuration;
pub use error::{Error, ResponseContent};
pub use request::{process_with_empty_response, process_with_json_response};
pub use util::{AuthRequired, ContentType, parse_deep_object, urlencode};