fix: wrong path module importation

This commit is contained in:
Fabio Di Stasio 2022-04-17 12:27:46 +02:00
parent b4d9821300
commit 9a0f982723
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
import * as antares from 'common/interfaces/antares';
import * as workers from 'common/interfaces/workers';
import * as fs from 'fs';
import path from 'path';
import * as path from 'path';
import { ChildProcess, fork } from 'child_process';
import { ipcMain, dialog } from 'electron';