add embed scrapers to list

This commit is contained in:
mrjvs
2023-09-15 19:58:20 +02:00
parent c57fdc39ff
commit b5d5951662

View File

@@ -1,4 +1,6 @@
import { Embed, Sourcerer } from '@/providers/base'; import { Embed, Sourcerer } from '@/providers/base';
import { mp4uploadScraper } from '@/providers/embeds/mp4upload';
import { streamsbScraper } from '@/providers/embeds/streamsb';
import { upcloudScraper } from '@/providers/embeds/upcloud'; import { upcloudScraper } from '@/providers/embeds/upcloud';
import { flixhqScraper } from '@/providers/sources/flixhq/index'; import { flixhqScraper } from '@/providers/sources/flixhq/index';
import { remotestreamScraper } from '@/providers/sources/remotestream'; import { remotestreamScraper } from '@/providers/sources/remotestream';
@@ -10,5 +12,5 @@ export function gatherAllSources(): Array<Sourcerer> {
export function gatherAllEmbeds(): Array<Embed> { export function gatherAllEmbeds(): Array<Embed> {
// all embeds are gathered here // all embeds are gathered here
return [upcloudScraper]; return [upcloudScraper, mp4uploadScraper, streamsbScraper];
} }