Files
webtorrent-desktop/crash-reporter.js
2016-05-11 17:52:18 +02:00

15 lines
264 B
JavaScript

module.exports = {
init
}
var config = require('./config')
var electron = require('electron')
function init () {
electron.crashReporter.start({
companyName: config.APP_NAME,
productName: config.APP_NAME,
submitURL: config.CRASH_REPORT_URL
})
}