aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRitesh Ghosh <[email protected]>2023-08-17 23:16:45 +0530
committerRitesh Ghosh <[email protected]>2023-08-17 23:16:45 +0530
commitdc4bf477c9e261f7a86c9c2542be0dac83c2a002 (patch)
treefe93e6edff04bc4c5c7f4ac2d39f482e4f9fd9b3 /src
parent277902a835a83847e252d57bef87cba32d63b90a (diff)
downloadaniwatch-api-dc4bf477c9e261f7a86c9c2542be0dac83c2a002.tar.xz
aniwatch-api-dc4bf477c9e261f7a86c9c2542be0dac83c2a002.zip
refactor(parser): updated parser import export
Diffstat (limited to 'src')
-rw-r--r--src/parsers/index.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/parsers/index.ts b/src/parsers/index.ts
index a959a0f..688b09a 100644
--- a/src/parsers/index.ts
+++ b/src/parsers/index.ts
@@ -1,17 +1,21 @@
import scrapeHomePage from "./homePage";
import scrapeGenreAnime from "./animeGenre";
import scrapeAnimeSearch from "./animeSearch";
+import scrapeAnimeEpisodes from "./animeEpisodes";
import scrapeAnimeCategory from "./animeCategory";
import scrapeProducerAnimes from "./animeProducer";
import scrapeAnimeAboutInfo from "./animeAboutInfo";
+import scrapeAnimeEpisodeSources from "./animeEpisodeSrcs";
import scrapeAnimeSearchSuggestion from "./animeSearchSuggestion";
export {
scrapeHomePage,
scrapeGenreAnime,
scrapeAnimeSearch,
+ scrapeAnimeEpisodes,
scrapeAnimeCategory,
scrapeProducerAnimes,
scrapeAnimeAboutInfo,
+ scrapeAnimeEpisodeSources,
scrapeAnimeSearchSuggestion,
};