some upgrades

This commit is contained in:
Simon
2026-02-13 15:47:35 +00:00
parent b45687d578
commit eea8d9ae6f
6 changed files with 750 additions and 4 deletions

View File

@@ -42,6 +42,8 @@ pub mod pimpbunny;
pub mod javtiful;
pub mod hypnotube;
pub mod freepornvideosxxx;
pub mod hentaihaven;
// convenient alias
pub type DynProvider = Arc<dyn Provider>;
@@ -60,6 +62,7 @@ pub static ALL_PROVIDERS: Lazy<HashMap<&'static str, DynProvider>> = Lazy::new(|
m.insert("javtiful", Arc::new(javtiful::JavtifulProvider::new()) as DynProvider);
m.insert("hypnotube", Arc::new(hypnotube::HypnotubeProvider::new()) as DynProvider);
m.insert("freepornvideosxxx", Arc::new(freepornvideosxxx::FreepornvideosxxxProvider::new()) as DynProvider);
m.insert("hentaihaven", Arc::new(hentaihaven::HentaihavenProvider::new()) as DynProvider);
// add more here as you migrate them
m
});