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