javtiful done

This commit is contained in:
Simon
2026-01-07 12:48:38 +00:00
parent c0368b2876
commit 0fc3bed6a7
4 changed files with 457 additions and 8 deletions

View File

@@ -39,6 +39,7 @@ pub mod xxdbx;
pub mod hqporner;
pub mod noodlemagazine;
pub mod pimpbunny;
pub mod javtiful;
// convenient alias
pub type DynProvider = Arc<dyn Provider>;
@@ -55,6 +56,7 @@ pub static ALL_PROVIDERS: Lazy<HashMap<&'static str, DynProvider>> = Lazy::new(|
m.insert("pmvhaven", Arc::new(pmvhaven::PmvhavenProvider::new()) as DynProvider);
m.insert("noodlemagazine", Arc::new(noodlemagazine::NoodlemagazineProvider::new()) as DynProvider);
m.insert("pimpbunny", Arc::new(pimpbunny::PimpbunnyProvider::new()) as DynProvider);
m.insert("javtiful", Arc::new(javtiful::JavtifulProvider::new()) as DynProvider);
// add more here as you migrate them
m
});