removed unused imports

This commit is contained in:
2025-12-09 23:27:14 +01:00
parent 2416947e9d
commit dde859b071

View File

@@ -12,14 +12,14 @@
use anyhow::{anyhow, Context, Result}; use anyhow::{anyhow, Context, Result};
use fantoccini::{Client, Locator}; use fantoccini::{Client, Locator};
use reqwest; use reqwest;
use std::io::{self, Read}; use std::io::{Read};
use std::path::{Path, PathBuf}; use std::path::{Path, PathBuf};
use tokio::fs::File; use tokio::fs::File;
use tokio::io::AsyncWriteExt; use tokio::io::AsyncWriteExt;
use url::Url; use url::Url;
use zip::ZipArchive; use zip::ZipArchive;
use crate::scraper::webdriver::{ChromeDriverPool, ScrapeTask}; 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. /// Fetches, downloads, and extracts the latest OpenVPN configurations from VPNBook.
/// ///