fix: fix mikan rss extractors

This commit is contained in:
2025-02-25 02:05:03 +08:00
parent 5bc5d98823
commit f327ea29f1
22 changed files with 2504 additions and 159 deletions

View File

@@ -0,0 +1,8 @@
use color_eyre::eyre;
use crate::fetch::HttpClient;
pub fn build_testing_http_client() -> eyre::Result<HttpClient> {
let mikan_client = HttpClient::default();
Ok(mikan_client)
}

View File

@@ -1,3 +1,4 @@
pub mod fetch;
pub mod mikan;
#[cfg(feature = "testcontainers")]
pub mod testcontainers;