diff options
| author | Ritesh Ghosh <[email protected]> | 2023-08-13 19:47:44 +0530 |
|---|---|---|
| committer | Ritesh Ghosh <[email protected]> | 2023-08-13 19:47:44 +0530 |
| commit | e3e8e9422e3e944a2eade46973aef8cca0673a06 (patch) | |
| tree | 2a6ceb1dc614bdd045d411693a8cebaa45c73684 /src/controllers | |
| parent | c3a77e0aded343ab0e2e15ab974841d87da06337 (diff) | |
| download | aniwatch-api-e3e8e9422e3e944a2eade46973aef8cca0673a06.tar.xz aniwatch-api-e3e8e9422e3e944a2eade46973aef8cca0673a06.zip | |
chore(controller): updated controller import export
Diffstat (limited to 'src/controllers')
| -rw-r--r-- | src/controllers/index.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/controllers/index.ts b/src/controllers/index.ts index 401f452..679e92f 100644 --- a/src/controllers/index.ts +++ b/src/controllers/index.ts @@ -1,15 +1,17 @@ -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"; +import getAnimeSearchSuggestion from "./animeSearchSuggestion.controller"; +import getProducerAnimes from "./animeProducer.controller"; export { - homePage, getGenreAnime, getAnimeSearch, getHomePageInfo, getAnimeCategory, + getProducerAnimes, getAnimeAboutInfo, + getAnimeSearchSuggestion, }; |
