pub struct HttpClient {} impl HttpClient { pub fn new() -> Self { Self {} } pub async fn get(&self, url: &str) -> anyhow::Result> { let bytes = reqwest::get(url).await?.bytes().await?; Ok(bytes.into()) } }