hypnotube

This commit is contained in:
Simon
2026-01-10 18:29:29 +00:00
parent eb49998593
commit aaff7d00c6
4 changed files with 444 additions and 2 deletions

View File

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