remove tube8 until yt-dlp is ready

This commit is contained in:
Simon
2026-02-23 18:02:47 +00:00
parent 718e7c3f78
commit ff8d1afef6

View File

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