webstreamr-github/src/embed-extractor/EmbedExtractorRegistry.ts
2025-05-10 22:59:12 +00:00

10 lines
323 B
TypeScript

import { EmbedExtractor } from './types';
import { Dropload } from './Dropload';
import { SuperVideo } from './SuperVideo';
type EmbedExtractorRegistryType = Record<string, EmbedExtractor>;
export const EmbedExtractorRegistry: EmbedExtractorRegistryType = {
dropload: new Dropload(),
supervideo: new SuperVideo(),
};