1 import { webFrame } from 'electron'; 2 import { PROTOCOL_NAME } from 'shared/enclave/utils'; 3 4 export function registerProtocol() { 5 // Whitelist custom protocol 6 webFrame.registerURLSchemeAsPrivileged(PROTOCOL_NAME); 7 }