|
@@ -53,6 +53,7 @@ import {
|
|
} from "./services/store";
|
|
} from "./services/store";
|
|
import {
|
|
import {
|
|
getElectronFilesFromGoogleZip,
|
|
getElectronFilesFromGoogleZip,
|
|
|
|
+ lsZip,
|
|
pendingUploads,
|
|
pendingUploads,
|
|
setPendingUploadCollection,
|
|
setPendingUploadCollection,
|
|
setPendingUploadFiles,
|
|
setPendingUploadFiles,
|
|
@@ -210,6 +211,8 @@ export const attachIPCHandlers = () => {
|
|
setPendingUploadFiles(type, filePaths),
|
|
setPendingUploadFiles(type, filePaths),
|
|
);
|
|
);
|
|
|
|
|
|
|
|
+ ipcMain.handle("lsZip", (_, zipPath: string) => lsZip(zipPath));
|
|
|
|
+
|
|
// -
|
|
// -
|
|
|
|
|
|
ipcMain.handle("getElectronFilesFromGoogleZip", (_, filePath: string) =>
|
|
ipcMain.handle("getElectronFilesFromGoogleZip", (_, filePath: string) =>
|