InitialCommit

This commit is contained in:
2022-08-01 15:48:08 +03:00
commit 4870bf7883
10 changed files with 14168 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
const { contextBridge, ipcRenderer } = require('electron');
contextBridge.exposeInMainWorld("api",{
func: (params)=>ipcRenderer.send("call",params)
})