mirror of
https://github.com/Fabio286/antares.git
synced 2025-06-05 21:59:22 +02:00
13 lines
234 B
JavaScript
13 lines
234 B
JavaScript
import { app, ipcMain } from 'electron';
|
|
|
|
export default () => {
|
|
ipcMain.on('close-app', () => {
|
|
app.exit();
|
|
});
|
|
|
|
ipcMain.on('get-key', async event => {
|
|
const key = false;
|
|
event.returnValue = key;
|
|
});
|
|
};
|