This commit is contained in:
Lucy 2025-09-30 17:12:09 +02:00
parent 9670deab55
commit 98c5feaaee
5 changed files with 9 additions and 54 deletions

View file

@ -1,9 +1,3 @@
use console::style;
use md5;
use std::fs::File;
use std::io::{BufRead, BufReader, Read};
use std::path::Path;
pub fn get_md5sums() -> Result<String, Box<dyn std::error::Error>> {
let client = reqwest::blocking::Client::builder()
.redirect(reqwest::redirect::Policy::none())
@ -14,5 +8,3 @@ pub fn get_md5sums() -> Result<String, Box<dyn std::error::Error>> {
.text()?;
Ok(res)
}