ComunicDesktop/index.js

15 lines
228 B
JavaScript
Raw Normal View History

2019-02-11 17:25:22 +00:00
/**
* Application main script
*
* @author The Comunic Authors
*/
2018-09-24 18:47:41 +00:00
2019-02-11 17:25:22 +00:00
const {app} = require('electron');
2019-02-11 17:13:40 +00:00
2019-02-11 17:25:22 +00:00
const MainWindow = require("./MainWindow");
2019-02-11 17:13:40 +00:00
console.log("Starting...");
app.on('ready', () => {
2019-02-11 17:25:22 +00:00
MainWindow.show();
2019-02-11 17:13:40 +00:00
});