Add Electron desktop shell and clean project docs

This commit is contained in:
2026-05-15 17:40:01 +00:00
parent 691f643edc
commit 8dfcb9b64d
11 changed files with 4430 additions and 1023 deletions
+8
View File
@@ -0,0 +1,8 @@
const { contextBridge, ipcRenderer } = require('electron');
contextBridge.exposeInMainWorld('webavpNative', {
isElectron: true,
verifyCertificateOnline({ serial, certificateHash }) {
return ipcRenderer.invoke('certificate:verify-online', { serial, certificateHash });
},
});