1 2 3 4 5 6 7 8 9 10 11
//! Blocking client API. //! //! # Optional //! //! This requires the optional `blocking` feature to be enabled. mod client; mod error; mod reqwest; pub use client::{ApiClient, ApiClientBuilder};