paystack/http/mod.rs
1//! The HTTP client can be different and it is toggled during the configuration process of the crate
2//! The default client will is th Reqwest client, in the case of none being selected.
3//! If both are selected, a compiler error is raised.
4
5pub mod base;
6pub mod errors;
7pub mod reqwest;
8
9// public re-export
10pub use base::HttpClient;
11pub use errors::ReqwestError;
12pub use reqwest::ReqwestClient;