From 316f3af04ef7fe4c08963cfe3ad7780ed3bc262c Mon Sep 17 00:00:00 2001 From: "Max P." Date: Wed, 21 May 2025 03:01:03 +0200 Subject: [PATCH] refactor(utils): update import path for TimerOptions - Adjusts the import path for TimerOptions to align with the new module structure. - Simplifies dependency management by consolidating imports. --- src/utils/fs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/fs.ts b/src/utils/fs.ts index 60e1c6c..7294178 100644 --- a/src/utils/fs.ts +++ b/src/utils/fs.ts @@ -1,6 +1,6 @@ import { ensureDir } from 'https://deno.land/std@0.224.0/fs/mod.ts'; import { join } from 'https://deno.land/std@0.224.0/path/mod.ts'; -import { TimerOptions } from '../types/options.ts'; +import { TimerOptions } from '../types/mod.ts'; export async function writeUnitFiles( name: string,