1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

feat: better security connections credentials storage

This commit is contained in:
2020-12-18 18:44:32 +01:00
parent 65ad0e954d
commit fc35f271d7
8 changed files with 56 additions and 7 deletions

View File

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