This commit is contained in:
Félix Saparelli 2022-02-16 00:14:51 +13:00
parent 4e0ca0c1c3
commit a12e934940
No known key found for this signature in database
GPG key ID: B948C4BAE44FC474
9 changed files with 199 additions and 117 deletions

View file

@ -3,8 +3,8 @@ use std::path::Path;
use log::info;
use reqwest::Method;
use crate::{download, remote_exists};
use super::Data;
use crate::{download, remote_exists};
pub struct QuickInstall {
url: String,
@ -28,4 +28,4 @@ impl super::Fetcher for QuickInstall {
info!("Downloading package from: '{}'", self.url);
download(&self.url, dst).await
}
}
}