antares/src/renderer/ipc-api/Application.js

9 lines
167 B
JavaScript

'use strict';
import { ipcRenderer } from 'electron';
export default class {
static getKey (params) {
return ipcRenderer.sendSync('get-key', params);
}
}