1 2 3 4 5 6 7 8 9 10 11 12 13
#![warn(rust_2018_idioms)]
#![warn(clippy::dbg_macro, clippy::print_stdout)]
#![doc = include_str!("../README.md")]
pub mod client;
pub mod conn;
mod error;
mod meta;
pub mod params;
pub mod request;
pub mod response;
pub use crate::{client::Client, error::*, params::Params, request::Request, response::Response};