This commit is contained in:
2021-08-04 17:17:16 -05:00
parent ce6d96e59b
commit e23c0086c2
75 changed files with 1255 additions and 1246 deletions

View File

@@ -1,6 +1,6 @@
const Constants = require('../../constants');
const addListeners = (ipcMain, { closeApplication, setWindowVisibility }) => {
const addListeners = (ipcMain, {closeApplication, setWindowVisibility}) => {
ipcMain.on(Constants.IPC_Shutdown, () => {
closeApplication();
});
@@ -15,4 +15,4 @@ const addListeners = (ipcMain, { closeApplication, setWindowVisibility }) => {
});
};
module.exports = { addListeners };
module.exports = {addListeners};