This commit is contained in:
himanshu8443
2025-06-15 21:29:40 +05:30
commit 3f3e12f5df
299 changed files with 18729 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import {ProviderType} from '../types';
import {ffCatalog, ffGenresList} from './ffCatalog';
import {ffEpisodeLinks} from './ffGetEpisodes';
import {ffGetInfo} from './ffGetMeta';
import {ffGetPosts, ffGetPostsSearch} from './ffGetPosts';
import {ffGetStream} from './ffGetStream';
export const filmyfly: ProviderType = {
catalog: ffCatalog,
genres: ffGenresList,
GetHomePosts: ffGetPosts,
GetMetaData: ffGetInfo,
GetSearchPosts: ffGetPostsSearch,
GetEpisodeLinks: ffEpisodeLinks,
GetStream: ffGetStream,
};