From 5118a2543dbd5e2cf23478917cfb848cceffad61 Mon Sep 17 00:00:00 2001 From: Ritesh Ghosh Date: Sun, 25 May 2025 22:51:12 +0530 Subject: [PATCH] refactor: `ServerContext` type import --- src/routes/hianime.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/hianime.ts b/src/routes/hianime.ts index 0890612..49138eb 100644 --- a/src/routes/hianime.ts +++ b/src/routes/hianime.ts @@ -1,7 +1,7 @@ import { Hono } from "hono"; import { HiAnime } from "aniwatch"; import { cache } from "../config/cache.js"; -import type { ServerContext } from "../config/variables.js"; +import type { ServerContext } from "../config/context.js"; const hianime = new HiAnime.Scraper(); const hianimeRouter = new Hono();