aboutsummaryrefslogtreecommitdiffstats
path: root/packages/main/src/infrastructure/config/ConfigRepository.ts
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-01-27 01:02:02 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-02-08 21:43:17 +0100
commitda610a51f49807d1409f36b98e06e89447a4202b (patch)
treea4f7911f45ca52626ef02f370c3f260d33f8272e /packages/main/src/infrastructure/config/ConfigRepository.ts
parentrefactor: Coding conventions (diff)
downloadsophie-da610a51f49807d1409f36b98e06e89447a4202b.tar.gz
sophie-da610a51f49807d1409f36b98e06e89447a4202b.tar.zst
sophie-da610a51f49807d1409f36b98e06e89447a4202b.zip
refactor: Extract config handling
Move the handling of the contents of the config file out of the stores and into dedicated files to simplify the code of the stores. Signed-off-by: Kristóf Marussy <kristof@marussy.com>
Diffstat (limited to 'packages/main/src/infrastructure/config/ConfigRepository.ts')
-rw-r--r--packages/main/src/infrastructure/config/ConfigRepository.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/main/src/infrastructure/config/ConfigRepository.ts b/packages/main/src/infrastructure/config/ConfigRepository.ts
index 0ce7fc1..e00f5a0 100644
--- a/packages/main/src/infrastructure/config/ConfigRepository.ts
+++ b/packages/main/src/infrastructure/config/ConfigRepository.ts
@@ -18,7 +18,7 @@
18 * SPDX-License-Identifier: AGPL-3.0-only 18 * SPDX-License-Identifier: AGPL-3.0-only
19 */ 19 */
20 20
21import type { Config } from '../../stores/SharedStore'; 21import type Config from '../../stores/config/Config';
22import type Disposer from '../../utils/Disposer'; 22import type Disposer from '../../utils/Disposer';
23 23
24export type ReadConfigResult = 24export type ReadConfigResult =