aboutsummaryrefslogtreecommitdiff
path: root/src/controllers/animeEpisodes.controller.ts
diff options
context:
space:
mode:
authorRitesh Ghosh <[email protected]>2024-01-19 19:55:06 +0530
committerRitesh Ghosh <[email protected]>2024-01-19 19:55:06 +0530
commitf4c276134ac45050beecb7d0078abd68a142bfec (patch)
tree6faa0387fb139da7fc86cce566b98bad546e5053 /src/controllers/animeEpisodes.controller.ts
parent20b788b3ce53f46301a31e562b0cdb3f63033d51 (diff)
downloadaniwatch-api-f4c276134ac45050beecb7d0078abd68a142bfec.tar.xz
aniwatch-api-f4c276134ac45050beecb7d0078abd68a142bfec.zip
refactor: `types` dir import
Diffstat (limited to 'src/controllers/animeEpisodes.controller.ts')
-rw-r--r--src/controllers/animeEpisodes.controller.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controllers/animeEpisodes.controller.ts b/src/controllers/animeEpisodes.controller.ts
index 40ee728..cf815f5 100644
--- a/src/controllers/animeEpisodes.controller.ts
+++ b/src/controllers/animeEpisodes.controller.ts
@@ -1,7 +1,7 @@
import createHttpError from "http-errors";
import { type RequestHandler } from "express";
import { scrapeAnimeEpisodes } from "../parsers/index.js";
-import { type AnimeEpisodePathParams } from "../models/controllers/index.js";
+import { type AnimeEpisodePathParams } from "../types/controllers/index.js";
// /anime/episodes/${anime-id}
const getAnimeEpisodes: RequestHandler<