Revert "feat: add extractors bundled in file refactor stream handling in multiple providers"

This reverts commit 13d41f9da6.
This commit is contained in:
Himanshu
2026-02-02 23:44:25 +05:30
parent 13d41f9da6
commit ef46918fec
220 changed files with 771 additions and 1300 deletions

View File

@@ -135,4 +135,13 @@ export type ProviderContext = {
getBaseUrl: (providerValue: string) => Promise<string>;
commonHeaders: Record<string, string>;
cheerio: typeof cheerio;
extractors: {
hubcloudExtracter: (link: string, signal: AbortSignal) => Promise<Stream[]>;
gofileExtracter: (id: string) => Promise<{
link: string;
token: string;
}>;
superVideoExtractor: (data: any) => Promise<string>;
gdFlixExtracter: (link: string, signal: AbortSignal) => Promise<Stream[]>;
};
};