refactor: rewrite qbit downlaoder

This commit is contained in:
2025-04-03 02:22:26 +08:00
parent 234441e6a3
commit 27b52f7fd1
76 changed files with 1501 additions and 955 deletions

View File

@@ -1,4 +1,4 @@
use crate::{errors::RResult, fetch::HttpClient};
use crate::{errors::app_error::RResult, fetch::HttpClient};
pub fn build_testing_http_client() -> RResult<HttpClient> {
let mikan_client = HttpClient::default();

View File

@@ -1,7 +1,7 @@
use reqwest::IntoUrl;
use crate::{
errors::RResult,
errors::app_error::RResult,
extract::mikan::{MikanClient, MikanConfig},
fetch::HttpClientConfig,
};