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:
16
providers/showbox/index.ts
Normal file
16
providers/showbox/index.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import {ProviderType} from '../types';
|
||||
import {catalogList, sbGenresList} from './sbCatalog';
|
||||
import {sbGetEpisodeLinks} from './sbGetEpisodeList';
|
||||
import {sbGetInfo} from './sbGetMeta';
|
||||
import {sbGetPosts, sbGetPostsSearch} from './sbGetPosts';
|
||||
import {sbGetStream} from './sbGetStream';
|
||||
|
||||
export const showBox: ProviderType = {
|
||||
catalog: catalogList,
|
||||
genres: sbGenresList,
|
||||
GetMetaData: sbGetInfo,
|
||||
GetHomePosts: sbGetPosts,
|
||||
GetStream: sbGetStream,
|
||||
GetSearchPosts: sbGetPostsSearch,
|
||||
GetEpisodeLinks: sbGetEpisodeLinks,
|
||||
};
|
||||
Reference in New Issue
Block a user