1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/** * AntiCaptcha API Client */ mod resources; pub use crate::resources::*; pub mod client { #[cfg(feature = "blocking")] pub mod blocking; pub mod r#async; } pub mod config { pub type Client = crate::client::r#async::Client; } pub use config::Client;