mirror of
https://github.com/vega-org/vega-providers.git
synced 2026-04-17 23:51:44 +00:00
init
This commit is contained in:
16
providers/netflixMirror/index.ts
Normal file
16
providers/netflixMirror/index.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
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,
|
||||
};
|
||||
Reference in New Issue
Block a user