diff options
| author | Ritesh Ghosh <[email protected]> | 2024-01-19 19:55:06 +0530 |
|---|---|---|
| committer | Ritesh Ghosh <[email protected]> | 2024-01-19 19:55:06 +0530 |
| commit | f4c276134ac45050beecb7d0078abd68a142bfec (patch) | |
| tree | 6faa0387fb139da7fc86cce566b98bad546e5053 /src/controllers/animeSearch.controller.ts | |
| parent | 20b788b3ce53f46301a31e562b0cdb3f63033d51 (diff) | |
| download | aniwatch-api-f4c276134ac45050beecb7d0078abd68a142bfec.tar.xz aniwatch-api-f4c276134ac45050beecb7d0078abd68a142bfec.zip | |
refactor: `types` dir import
Diffstat (limited to 'src/controllers/animeSearch.controller.ts')
| -rw-r--r-- | src/controllers/animeSearch.controller.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controllers/animeSearch.controller.ts b/src/controllers/animeSearch.controller.ts index 85622d5..c7ec57a 100644 --- a/src/controllers/animeSearch.controller.ts +++ b/src/controllers/animeSearch.controller.ts @@ -1,7 +1,7 @@ import createHttpError from "http-errors"; import { type RequestHandler } from "express"; import { scrapeAnimeSearch } from "../parsers/index.js"; -import { type AnimeSearchQueryParams } from "../models/controllers/index.js"; +import { type AnimeSearchQueryParams } from "../types/controllers/index.js"; // /anime/search?q=${query}&page=${page} const getAnimeSearch: RequestHandler< |
