2020-03-20 20:28:31 +00:00
|
|
|
'use strict';
|
2018-10-06 11:48:00 +00:00
|
|
|
|
2020-03-20 20:28:31 +00:00
|
|
|
const CrashReporter = require('@electron/internal/common/crash-reporter');
|
|
|
|
const { crashReporterInit } = require('@electron/internal/browser/crash-reporter-init');
|
2018-10-06 11:48:00 +00:00
|
|
|
|
|
|
|
class CrashReporterMain extends CrashReporter {
|
2019-02-05 20:56:44 +00:00
|
|
|
init (options) {
|
2020-03-20 20:28:31 +00:00
|
|
|
return crashReporterInit(options);
|
2018-10-06 11:48:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-20 20:28:31 +00:00
|
|
|
module.exports = new CrashReporterMain();
|