1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-02-17 12:10:39 +01:00

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

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';