use bytes::Bytes; use reqwest::IntoUrl; use super::{bytes::fetch_bytes, client::HttpClientTrait}; pub async fn fetch_image( client: &H, url: T, ) -> color_eyre::eyre::Result { fetch_bytes(client, url).await }