mirror of
https://github.com/viarotel-org/escrcpy.git
synced 2024-11-15 03:07:41 +01:00
17 lines
357 B
JavaScript
17 lines
357 B
JavaScript
import { app, ipcMain } from 'electron'
|
|
|
|
import updater from './updater/index.js'
|
|
import handles from './handles/index.js'
|
|
import tray from './tray/index.js'
|
|
|
|
export default (mainWindow) => {
|
|
ipcMain.on('restart-app', () => {
|
|
app.isQuiting = true
|
|
app.relaunch()
|
|
app.quit()
|
|
})
|
|
handles(mainWindow)
|
|
updater(mainWindow)
|
|
tray(mainWindow)
|
|
}
|