This commit is contained in:
Simon
2025-10-25 14:53:18 +00:00
parent d6b1f5d93f
commit 6c542ce6b4
2 changed files with 268 additions and 0 deletions

View File

@@ -37,6 +37,7 @@ pub mod pornzog;
pub mod youjizz;
pub mod beeg;
pub mod tnaflix;
pub mod pornxp;
// convenient alias
pub type DynProvider = Arc<dyn Provider>;
@@ -46,6 +47,7 @@ pub static ALL_PROVIDERS: Lazy<HashMap<&'static str, DynProvider>> = Lazy::new(|
m.insert("omgxxx", Arc::new(omgxxx::OmgxxxProvider::new()) as DynProvider);
m.insert("beeg", Arc::new(beeg::BeegProvider::new()) as DynProvider);
m.insert("tnaflix", Arc::new(tnaflix::TnaflixProvider::new()) as DynProvider);
m.insert("pornxp", Arc::new(pornxp::PornxpProvider::new()) as DynProvider);
// add more here as you migrate them
m
});