refactor(extractor): sort extractors
This commit is contained in:
parent
5da52d648a
commit
1c986b0521
1 changed files with 2 additions and 2 deletions
|
|
@ -6,11 +6,11 @@ import { Fetcher } from '../utils';
|
|||
import { KinoGer } from './KinoGer';
|
||||
import { Mixdrop } from './Mixdrop';
|
||||
import { Soaper } from './Soaper';
|
||||
import { Streamtape } from './Streamtape';
|
||||
import { SuperVideo } from './SuperVideo';
|
||||
import { Uqload } from './Uqload';
|
||||
import { VidSrc } from './VidSrc';
|
||||
import { VixSrc } from './VixSrc';
|
||||
import { Streamtape } from './Streamtape';
|
||||
|
||||
export * from './Extractor';
|
||||
export * from './ExtractorRegistry';
|
||||
|
|
@ -18,11 +18,11 @@ export * from './ExtractorRegistry';
|
|||
export const createExtractors = (fetcher: Fetcher): Extractor[] => [
|
||||
new DoodStream(fetcher),
|
||||
new Dropload(fetcher),
|
||||
new SuperVideo(fetcher),
|
||||
new KinoGer(fetcher),
|
||||
new Mixdrop(fetcher),
|
||||
new Soaper(fetcher),
|
||||
new Streamtape(fetcher),
|
||||
new SuperVideo(fetcher),
|
||||
new Uqload(fetcher),
|
||||
new VidSrc(fetcher),
|
||||
new VixSrc(fetcher),
|
||||
|
|
|
|||
Loading…
Reference in a new issue