1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-24 07:36:40 +02:00
keeweb/desktop/scripts/ipc.js

8 lines
294 B
JavaScript
Raw Normal View History

2021-01-10 14:31:33 +01:00
module.exports.setupIpcHandlers = () => {
require('./ipc-handlers/browser-extension-connector');
require('./ipc-handlers/hardware-crypto');
require('./ipc-handlers/native-module-host-proxy');
require('./ipc-handlers/spawn-process');
2021-05-08 10:37:24 +02:00
require('./ipc-handlers/set-locale');
2021-01-10 14:31:33 +01:00
};