mirror of
https://github.com/vega-org/vega-providers.git
synced 2026-04-17 15:41:45 +00:00
17 lines
537 B
TypeScript
17 lines
537 B
TypeScript
import {nfCatalog, nfGenresList} from './nfCatalog';
|
|
import {nfGetInfo} from './nfGetInfo';
|
|
import {nfGetPost, nfGetPostsSearch} from './nfGetPost';
|
|
import {nfGetEpisodes} from './nfGetEpisodes';
|
|
import {nfGetStream} from './nfGetSteam';
|
|
import {ProviderType} from '../types';
|
|
|
|
export const netflixMirror: ProviderType = {
|
|
catalog: nfCatalog,
|
|
genres: nfGenresList,
|
|
GetMetaData: nfGetInfo,
|
|
GetHomePosts: nfGetPost,
|
|
GetStream: nfGetStream,
|
|
GetEpisodeLinks: nfGetEpisodes,
|
|
GetSearchPosts: nfGetPostsSearch,
|
|
};
|