mirror of
https://github.com/vega-org/vega-providers.git
synced 2026-04-17 23:51:44 +00:00
15 lines
497 B
TypeScript
15 lines
497 B
TypeScript
import {allCatalog, allGenresList} from '../autoEmbed/allCatalog';
|
|
import {allGetInfo} from '../autoEmbed/allGetInfo';
|
|
import {allGetPost, allGetSearchPosts} from '../autoEmbed/allGetPost';
|
|
import {ProviderType} from '../types';
|
|
import {mpGetStream} from './mpGetStream';
|
|
|
|
export const moviesApi: ProviderType = {
|
|
catalog: allCatalog,
|
|
genres: allGenresList,
|
|
GetMetaData: allGetInfo,
|
|
GetHomePosts: allGetPost,
|
|
GetStream: mpGetStream,
|
|
GetSearchPosts: allGetSearchPosts,
|
|
};
|