chaturbate

This commit is contained in:
Simon
2026-02-13 18:21:30 +00:00
parent eea8d9ae6f
commit 9964c11a8a
2 changed files with 279 additions and 0 deletions

View File

@@ -43,6 +43,7 @@ pub mod javtiful;
pub mod hypnotube;
pub mod freepornvideosxxx;
pub mod hentaihaven;
pub mod chaturbate;
// convenient alias
pub type DynProvider = Arc<dyn Provider>;
@@ -63,6 +64,7 @@ pub static ALL_PROVIDERS: Lazy<HashMap<&'static str, DynProvider>> = Lazy::new(|
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);
m.insert("chaturbate", Arc::new(chaturbate::ChaturbateProvider::new()) as DynProvider);
// add more here as you migrate them
m
});