mirror of
https://github.com/electron/electron.git
synced 2026-02-17 10:31:38 -05:00
13 lines
335 B
JavaScript
13 lines
335 B
JavaScript
'use strict';
|
|
|
|
const CrashReporter = require('@electron/internal/common/crash-reporter');
|
|
const { crashReporterInit } = require('@electron/internal/browser/crash-reporter-init');
|
|
|
|
class CrashReporterMain extends CrashReporter {
|
|
init (options) {
|
|
return crashReporterInit(options);
|
|
}
|
|
}
|
|
|
|
module.exports = new CrashReporterMain();
|