mirror of https://github.com/electron/electron
9 lines
163 B
JavaScript
9 lines
163 B
JavaScript
![]() |
const { app, session } = require('electron');
|
||
![]() |
|
||
|
app.on('ready', () => {
|
||
![]() |
session.fromPartition('in-memory');
|
||
![]() |
setImmediate(() => {
|
||
|
process.exit(0);
|
||
|
});
|
||
![]() |
});
|