mirror of
https://github.com/viarotel-org/escrcpy.git
synced 2024-11-15 11:23:22 +01:00
7 lines
108 B
JavaScript
7 lines
108 B
JavaScript
|
import { app, ipcMain } from 'electron'
|
||
|
|
||
|
ipcMain.on('restart-app', () => {
|
||
|
app.relaunch()
|
||
|
app.quit()
|
||
|
})
|