forked from distok/asarfuckery
8 lines
246 B
JavaScript
8 lines
246 B
JavaScript
|
'use strict'
|
||
|
|
||
|
if (process.platform === 'win32') {
|
||
|
module.exports = require('@electron/internal/browser/api/auto-updater/auto-updater-win')
|
||
|
} else {
|
||
|
module.exports = require('@electron/internal/browser/api/auto-updater/auto-updater-native')
|
||
|
}
|