mirror of
https://github.com/vega-org/vega-providers.git
synced 2026-04-17 15:41:45 +00:00
15 lines
451 B
TypeScript
15 lines
451 B
TypeScript
import {hiGetInfo} from './hiGetInfo';
|
|
import {hiCatalog, hiGenresList} from './hiCatalog';
|
|
import {hiGetStream} from './HiGetSteam';
|
|
import {hiGetPosts, hiGetPostsSearch} from './hiGetPosts';
|
|
import {ProviderType} from '../types';
|
|
|
|
export const HiAnime: ProviderType = {
|
|
catalog: hiCatalog,
|
|
genres: hiGenresList,
|
|
GetMetaData: hiGetInfo,
|
|
GetHomePosts: hiGetPosts,
|
|
GetStream: hiGetStream,
|
|
GetSearchPosts: hiGetPostsSearch,
|
|
};
|