aboutsummaryrefslogtreecommitdiffstats
path: root/src/helpers/service-helpers.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/helpers/service-helpers.js')
-rw-r--r--src/helpers/service-helpers.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/helpers/service-helpers.js b/src/helpers/service-helpers.js
index 83f89f108..f6363aca8 100644
--- a/src/helpers/service-helpers.js
+++ b/src/helpers/service-helpers.js
@@ -1,9 +1,7 @@
1import path from 'path'; 1import path from 'path';
2import { remote } from 'electron'; 2import { app } from '@electron/remote';
3import fs from 'fs-extra'; 3import fs from 'fs-extra';
4 4
5const { app } = remote;
6
7export function getServicePartitionsDirectory() { 5export function getServicePartitionsDirectory() {
8 return path.join(app.getPath('userData'), 'Partitions'); 6 return path.join(app.getPath('userData'), 'Partitions');
9} 7}