mirror of
https://github.com/p-stream/providers.git
synced 2026-03-11 17:55:36 +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 { mp4uploadScraper } from '@/providers/embeds/mp4upload';
|
||||
import { streamsbScraper } from '@/providers/embeds/streamsb';
|
||||
import { upcloudScraper } from '@/providers/embeds/upcloud';
|
||||
import { flixhqScraper } from '@/providers/sources/flixhq/index';
|
||||
import { remotestreamScraper } from '@/providers/sources/remotestream';
|
||||
|
|
@ -10,5 +12,5 @@ export function gatherAllSources(): Array<Sourcerer> {
|
|||
|
||||
export function gatherAllEmbeds(): Array<Embed> {
|
||||
// all embeds are gathered here
|
||||
return [upcloudScraper];
|
||||
return [upcloudScraper, mp4uploadScraper, streamsbScraper];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue