pub trait OtaDownloaderProxyInterface: Send + Sync {
type FetchBlobResponseFut: Future<Output = Result<OtaDownloaderFetchBlobResult, Error>> + Send;
// Required method
fn fetch_blob(
&self,
hash: &BlobId,
base_url: &str,
) -> Self::FetchBlobResponseFut;
}