From dde859b0718ebceaa0c0216076a4811b5bf14b8c Mon Sep 17 00:00:00 2001 From: donpat1to Date: Tue, 9 Dec 2025 23:27:14 +0100 Subject: [PATCH] removed unused imports --- src/util/opnv.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/opnv.rs b/src/util/opnv.rs index 5119441..4f16ded 100644 --- a/src/util/opnv.rs +++ b/src/util/opnv.rs @@ -12,14 +12,14 @@ use anyhow::{anyhow, Context, Result}; use fantoccini::{Client, Locator}; use reqwest; -use std::io::{self, Read}; +use std::io::{Read}; use std::path::{Path, PathBuf}; use tokio::fs::File; use tokio::io::AsyncWriteExt; use url::Url; use zip::ZipArchive; use crate::scraper::webdriver::{ChromeDriverPool, ScrapeTask}; -use crate::util::{logger, directories::DataPaths}; +use crate::util::{directories::DataPaths}; /// Fetches, downloads, and extracts the latest OpenVPN configurations from VPNBook. ///