mirror of
https://github.com/p-stream/providers.git
synced 2026-04-21 13:32:19 +00:00
add embed scrapers to list
This commit is contained in:
parent
c57fdc39ff
commit
b5d5951662
1 changed files with 3 additions and 1 deletions
|
|
@ -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];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue