mirror of
https://github.com/movie-web/providers.git
synced 2025-09-13 18:13:25 +00:00
15 lines
506 B
TypeScript
15 lines
506 B
TypeScript
import { Embed, Sourcerer } from '@/providers/base';
|
|
import { upcloudScraper } from '@/providers/embeds/upcloud';
|
|
import { flixhqScraper } from '@/providers/sources/flixhq/index';
|
|
import { remotreamScraper } from '@/providers/sources/remotestream/index';
|
|
|
|
export function gatherAllSources(): Array<Sourcerer> {
|
|
// all sources are gathered here
|
|
return [flixhqScraper, remotreamScraper];
|
|
}
|
|
|
|
export function gatherAllEmbeds(): Array<Embed> {
|
|
// all embeds are gathered here
|
|
return [upcloudScraper];
|
|
}
|