mirror of
https://silica.codes/BedrockReverse/MCPackDecrypt.git
synced 2025-04-05 13:12:46 +13:00
6 lines
No EOL
231 B
JavaScript
6 lines
No EOL
231 B
JavaScript
const {contextBridge, ipcRenderer} = require('electron');
|
|
|
|
contextBridge.exposeInMainWorld("electron", {
|
|
getPacks: () => ipcRenderer.invoke('get-packs'),
|
|
pickPath: (inputDir) => ipcRenderer.invoke('pick-path', inputDir),
|
|
}) |