diff options
| author | Ritesh Ghosh <[email protected]> | 2023-08-17 23:24:47 +0530 |
|---|---|---|
| committer | Ritesh Ghosh <[email protected]> | 2023-08-17 23:24:47 +0530 |
| commit | eaa384a83e33ad820c82f3860ccd88e40d5a0e33 (patch) | |
| tree | 155c55751f1dafe4d8b571ffe9e09149dc8d9fbf /src/controllers | |
| parent | 34efd85bc74a2be845d11afa26f4e5c13e293ab7 (diff) | |
| download | aniwatch-api-eaa384a83e33ad820c82f3860ccd88e40d5a0e33.tar.xz aniwatch-api-eaa384a83e33ad820c82f3860ccd88e40d5a0e33.zip | |
refactor(controller): updated controllers import export
Diffstat (limited to 'src/controllers')
| -rw-r--r-- | src/controllers/index.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/controllers/index.ts b/src/controllers/index.ts index 679e92f..cd8b86c 100644 --- a/src/controllers/index.ts +++ b/src/controllers/index.ts @@ -1,17 +1,21 @@ import getGenreAnime from "./animeGenre.controller"; import getHomePageInfo from "./homePage.controller"; import getAnimeSearch from "./animeSearch.controller"; +import getAnimeEpisodes from "./animeEpisodes.controller"; import getAnimeCategory from "./animeCategory.controller"; +import getProducerAnimes from "./animeProducer.controller"; import getAnimeAboutInfo from "./animeAboutInfo.controller"; +import getAnimeEpisodeSources from "./animeEpisodeSrcs.controller"; import getAnimeSearchSuggestion from "./animeSearchSuggestion.controller"; -import getProducerAnimes from "./animeProducer.controller"; export { getGenreAnime, getAnimeSearch, getHomePageInfo, + getAnimeEpisodes, getAnimeCategory, getProducerAnimes, getAnimeAboutInfo, + getAnimeEpisodeSources, getAnimeSearchSuggestion, }; |
