mirror of
https://github.com/vega-org/vega-providers.git
synced 2026-04-18 08:01:43 +00:00
init
This commit is contained in:
17
providers/topmovies/index.ts
Normal file
17
providers/topmovies/index.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import {modGetInfo} from '../mod/modGetInfo';
|
||||
import {modGetEpisodeLinks} from '../mod/modGetEpisodesList';
|
||||
import {modGetStream} from '../mod/modGetStream';
|
||||
import {ProviderType} from '../types';
|
||||
import {topGetPosts, topGetPostsSearch} from './topGetPosts';
|
||||
import {topCatalogList, topGenresList} from './topCatalog';
|
||||
|
||||
export const topMovies: ProviderType = {
|
||||
catalog: topCatalogList,
|
||||
genres: topGenresList,
|
||||
GetMetaData: modGetInfo,
|
||||
GetHomePosts: topGetPosts,
|
||||
GetStream: modGetStream,
|
||||
GetEpisodeLinks: modGetEpisodeLinks,
|
||||
nonStreamableServer: [],
|
||||
GetSearchPosts: topGetPostsSearch,
|
||||
};
|
||||
Reference in New Issue
Block a user