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