2018-10-06 11:48:00 +00:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
const CrashReporter = require('@electron/internal/common/crash-reporter')
|
2019-02-05 20:56:44 +00:00
|
|
|
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) {
|
|
|
|
return crashReporterInit(options)
|
2018-10-06 11:48:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = new CrashReporterMain()
|