diff options
| author | Ritesh Ghosh <[email protected]> | 2023-08-03 23:59:33 +0530 |
|---|---|---|
| committer | Ritesh Ghosh <[email protected]> | 2023-08-03 23:59:33 +0530 |
| commit | e54f1a836ee712ddf7edaf84c3864da83baf50a4 (patch) | |
| tree | 2b18142f058a2743bdb0d8fa21d2583c81336ef5 /src | |
| parent | 65f863b3c11c98b9f34bfdc57ba8e896110dcf22 (diff) | |
| download | aniwatch-api-e54f1a836ee712ddf7edaf84c3864da83baf50a4.tar.xz aniwatch-api-e54f1a836ee712ddf7edaf84c3864da83baf50a4.zip | |
refactor(parser): updated parser imports & exports
Diffstat (limited to 'src')
| -rw-r--r-- | src/parsers/index.ts | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/parsers/index.ts b/src/parsers/index.ts index ae69e88..31325cb 100644 --- a/src/parsers/index.ts +++ b/src/parsers/index.ts @@ -1,5 +1,13 @@ -import scrapeAnimeCategory from "./animeCategory"; -import scrapeAnimeSearch from "./animeSearch"; import scrapeHomePage from "./homePage"; +import scrapeGenreAnime from "./animeGenre"; +import scrapeAnimeSearch from "./animeSearch"; +import scrapeAnimeCategory from "./animeCategory"; +import scrapeAnimeAboutInfo from "./animeAboutInfo"; -export { scrapeAnimeCategory, scrapeAnimeSearch, scrapeHomePage }; +export { + scrapeHomePage, + scrapeGenreAnime, + scrapeAnimeSearch, + scrapeAnimeCategory, + scrapeAnimeAboutInfo, +}; |
