mirror of
https://silica.codes/BedrockReverse/MCPackDecrypt.git
synced 2025-04-06 13:15:43 +12: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),
|
|
}) |