Update all.ts

This commit is contained in:
Pas 2025-05-18 09:45:39 -06:00
parent db3ecc6625
commit 5fe7c86f4b

View file

@ -79,9 +79,11 @@ import { webtor1080Scraper, webtor480Scraper, webtor4kScraper, webtor720Scraper
import { import {
xprimeApolloEmbed, xprimeApolloEmbed,
xprimeFoxEmbed, xprimeFoxEmbed,
xprimeHarbourEmbed,
xprimeMarantEmbed, xprimeMarantEmbed,
xprimePrimenetEmbed, xprimePrimenetEmbed,
xprimeStreamboxEmbed, xprimeStreamboxEmbed,
xprimeVolkswagenEmbed,
} from './embeds/xprime'; } from './embeds/xprime';
import { oneServerScraper } from './sources/1server'; import { oneServerScraper } from './sources/1server';
import { EightStreamScraper } from './sources/8stream'; import { EightStreamScraper } from './sources/8stream';
@ -103,12 +105,12 @@ import { uiraliveScraper } from './sources/uiralive';
import { vidapiClickScraper } from './sources/vidapiclick'; import { vidapiClickScraper } from './sources/vidapiclick';
import { warezcdnScraper } from './sources/warezcdn'; import { warezcdnScraper } from './sources/warezcdn';
import { webtorScraper } from './sources/webtor'; import { webtorScraper } from './sources/webtor';
import { wecimaScraper } from './sources/wecima';
import { xprimeScraper } from './sources/xprime'; import { xprimeScraper } from './sources/xprime';
export function gatherAllSources(): Array<Sourcerer> { export function gatherAllSources(): Array<Sourcerer> {
// all sources are gathered here // all sources are gathered here
return [ return [
animeflvScraper,
cuevana3Scraper, cuevana3Scraper,
catflixScraper, catflixScraper,
ridooMoviesScraper, ridooMoviesScraper,
@ -138,6 +140,8 @@ export function gatherAllSources(): Array<Sourcerer> {
ConsumetScraper, ConsumetScraper,
hianimeScraper, hianimeScraper,
oneServerScraper, oneServerScraper,
wecimaScraper,
animeflvScraper,
]; ];
} }
@ -150,13 +154,8 @@ export function gatherAllEmbeds(): Array<Embed> {
ridooScraper, ridooScraper,
closeLoadScraper, closeLoadScraper,
doodScraper, doodScraper,
streamwishJapaneseScraper,
streamwishLatinoScraper,
streamwishSpanishScraper,
streamwishEnglishScraper,
streamvidScraper, streamvidScraper,
streamtapeScraper, streamtapeScraper,
streamtapeLatinoScraper,
warezcdnembedHlsScraper, warezcdnembedHlsScraper,
warezcdnembedMp4Scraper, warezcdnembedMp4Scraper,
warezPlayerScraper, warezPlayerScraper,
@ -193,6 +192,8 @@ export function gatherAllEmbeds(): Array<Embed> {
xprimeStreamboxEmbed, xprimeStreamboxEmbed,
xprimeMarantEmbed, xprimeMarantEmbed,
xprimePrimenetEmbed, xprimePrimenetEmbed,
xprimeVolkswagenEmbed,
xprimeHarbourEmbed,
ConsumetVidCloudScraper, ConsumetVidCloudScraper,
ConsumetStreamSBScraper, ConsumetStreamSBScraper,
ConsumetVidStreamingScraper, ConsumetVidStreamingScraper,
@ -210,5 +211,10 @@ export function gatherAllEmbeds(): Array<Embed> {
oneServerHianimeEmbed, oneServerHianimeEmbed,
oneServerAnimepaheEmbed, oneServerAnimepaheEmbed,
oneServerAnizoneEmbed, oneServerAnizoneEmbed,
streamwishJapaneseScraper,
streamwishLatinoScraper,
streamwishSpanishScraper,
streamwishEnglishScraper,
streamtapeLatinoScraper,
]; ];
} }