pimpbunny

This commit is contained in:
Simon
2025-11-30 14:15:09 +00:00
parent 61e38caed5
commit 07b812be64
2 changed files with 557 additions and 0 deletions

View File

@@ -38,6 +38,7 @@ pub mod rule34gen;
pub mod xxdbx;
pub mod hqporner;
pub mod noodlemagazine;
pub mod pimpbunny;
// convenient alias
pub type DynProvider = Arc<dyn Provider>;
@@ -53,6 +54,7 @@ pub static ALL_PROVIDERS: Lazy<HashMap<&'static str, DynProvider>> = Lazy::new(|
m.insert("hqporner", Arc::new(hqporner::HqpornerProvider::new()) as DynProvider);
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);
// add more here as you migrate them
m
});