diff options
| author | Ritesh Ghosh <[email protected]> | 2023-08-07 14:57:20 +0530 |
|---|---|---|
| committer | Ritesh Ghosh <[email protected]> | 2023-08-07 14:57:20 +0530 |
| commit | 205619be557a7e1ac6152f370f440005feea0050 (patch) | |
| tree | e6fd9e78316366848ed82d7d3a7421abb358afd3 /src/controllers | |
| parent | 3d81a6c422ac4efd957961d190d7638ab0695062 (diff) | |
| download | aniwatch-api-205619be557a7e1ac6152f370f440005feea0050.tar.xz aniwatch-api-205619be557a7e1ac6152f370f440005feea0050.zip | |
refactor: refactored controller imports & exports
Diffstat (limited to 'src/controllers')
| -rw-r--r-- | src/controllers/index.ts | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/controllers/index.ts b/src/controllers/index.ts index fdf839b..401f452 100644 --- a/src/controllers/index.ts +++ b/src/controllers/index.ts @@ -1,13 +1,15 @@ -import getAnimeAboutInfo from "./animeAboutInfo.controller"; -import getAnimeCategory from "./animeCategory.controller"; -import getAnimeSearch from "./animeSearch.controller"; -import getHomePage from "./homePage.controller"; +import homePage from "./home.controller"; import getGenreAnime from "./animeGenre.controller"; +import getHomePageInfo from "./homePage.controller"; +import getAnimeSearch from "./animeSearch.controller"; +import getAnimeCategory from "./animeCategory.controller"; +import getAnimeAboutInfo from "./animeAboutInfo.controller"; export { - getHomePage, + homePage, getGenreAnime, getAnimeSearch, + getHomePageInfo, getAnimeCategory, getAnimeAboutInfo, }; |
