From 943a65588946f76620838ae0cb87e4d9208604be Mon Sep 17 00:00:00 2001 From: Ben Allfree Date: Tue, 23 Jul 2024 05:48:18 +0000 Subject: [PATCH] fix(pockethost): import cycle --- packages/pockethost/src/constants.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/pockethost/src/constants.ts b/packages/pockethost/src/constants.ts index fbfcda12..fb8aab9a 100644 --- a/packages/pockethost/src/constants.ts +++ b/packages/pockethost/src/constants.ts @@ -12,13 +12,15 @@ import { SettingsHandlerFactory, SettingsService, UserFields, + mkSingleton, +} from '../core' +import { mkBoolean, mkCsvString, mkNumber, mkPath, - mkSingleton, mkString, -} from '../core' +} from './core/Settings' const __dirname = dirname(fileURLToPath(import.meta.url))