mirror of
https://github.com/vega-org/vega-providers.git
synced 2026-04-17 15:41:45 +00:00
16 lines
522 B
TypeScript
16 lines
522 B
TypeScript
import {uhdCatalogList, uhdGenresList} from './uhCtatalog';
|
|
import {uhdGetPosts, uhdGetPostsSearch} from './uhdGetPosts';
|
|
import {uhdGetStream} from './uhdGetStream';
|
|
import {getUhdInfo} from './getUhdInfo';
|
|
import {ProviderType} from '../types';
|
|
|
|
export const uhdMovies: ProviderType = {
|
|
catalog: uhdCatalogList,
|
|
genres: uhdGenresList,
|
|
GetMetaData: getUhdInfo,
|
|
GetHomePosts: uhdGetPosts,
|
|
GetStream: uhdGetStream,
|
|
nonStreamableServer: ['Gdrive-Instant'],
|
|
GetSearchPosts: uhdGetPostsSearch,
|
|
};
|