mirror of
https://github.com/electron/electron.git
synced 2026-01-26 15:58:07 -05:00
6 lines
174 B
JavaScript
6 lines
174 B
JavaScript
if (process.platform === 'win32') {
|
|
module.exports = require('./auto-updater/auto-updater-win')
|
|
} else {
|
|
module.exports = require('./auto-updater/auto-updater-native')
|
|
}
|