From d0c78cb20600423f641de2971f119ca7487461df Mon Sep 17 00:00:00 2001 From: Mathis HERRIOT <197931332+0x485254@users.noreply.github.com> Date: Tue, 20 Jan 2026 15:45:40 +0100 Subject: [PATCH] refactor(health): use `type` import for `Cache` from `cache-manager` --- backend/src/health.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/health.controller.ts b/backend/src/health.controller.ts index 10833c4..d049e87 100644 --- a/backend/src/health.controller.ts +++ b/backend/src/health.controller.ts @@ -1,6 +1,6 @@ import { CACHE_MANAGER } from "@nestjs/cache-manager"; import { Controller, Get, Inject } from "@nestjs/common"; -import { Cache } from "cache-manager"; +import type { Cache } from "cache-manager"; import { sql } from "drizzle-orm"; import { DatabaseService } from "./database/database.service";