tetrio_api/http/clients/
mod.rs

1/// A trait used to define your own http client. Currently only Async clients are supported.
2pub mod http_client;
3
4/// A reqwest based http client
5pub mod reqwest_client;