mime-chat/src/background/store.ts
2021-05-30 14:02:59 -04:00

16 lines
226 B
TypeScript

const Store = require('electron-store');
const schema = {
key: {
type: 'string',
},
crimataId: {
type: 'string'
}
};
export const store = new Store({
schema,
encryptionKey: "super user test"
});