mirror of
https://github.com/p-stream/providers.git
synced 2026-04-28 19:43:46 +00:00
8 lines
250 B
TypeScript
8 lines
250 B
TypeScript
import { getVidSrcShowSources } from '@/providers/sources/vidsrc/scrape';
|
|
import { ShowScrapeContext } from '@/utils/context';
|
|
|
|
export async function scrapeShow(ctx: ShowScrapeContext) {
|
|
return {
|
|
embeds: await getVidSrcShowSources(ctx),
|
|
};
|
|
}
|