Skip to main content

argyph_embed/
http.rs

1use reqwest::Client;
2
3use crate::config::EmbedConfig;
4
5pub fn build_client(config: &EmbedConfig) -> reqwest::Result<Client> {
6    reqwest::Client::builder().timeout(config.timeout).build()
7}