gitignore_template_generator/
http_client.rs

1//! Define components to make HTTP calls.
2
3mod api;
4mod impls;
5
6#[cfg(test)]
7mod tests;
8
9pub use api::*;