From c9fa1ee1e15107eac3ad83f5e6ede6b8ef3b49ea Mon Sep 17 00:00:00 2001 From: Taj Date: Sun, 24 Aug 2025 03:01:33 +0530 Subject: [PATCH] fix: update import path for Config interface --- src/util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.ts b/src/util.ts index ff07565..315e088 100644 --- a/src/util.ts +++ b/src/util.ts @@ -1,7 +1,7 @@ import * as glob from 'glob'; import { statSync, readFileSync } from 'fs'; -import { Config } from './interfaces/configInterface'; +import { Config } from './interfaces'; export const uploadUrl = (url: string): string => { const templateMarkerPos = url.indexOf('{');