2020-04-09 16:01:16 +09:00
|
|
|
const { WebContentsView, app } = require('electron');
|
2024-10-02 19:10:44 -07:00
|
|
|
|
2020-02-03 16:43:22 -06:00
|
|
|
app.whenReady().then(function () {
|
2023-05-25 03:09:17 +02:00
|
|
|
// eslint-disable-next-line no-new
|
2023-12-13 13:01:03 -08:00
|
|
|
new WebContentsView();
|
2018-11-09 00:57:28 +09:00
|
|
|
|
2020-03-20 13:28:31 -07:00
|
|
|
app.quit();
|
|
|
|
});
|