mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 18:41:47 +00:00
7 lines
145 B
JavaScript
7 lines
145 B
JavaScript
const app = require("electron").app || require('@electron/remote').app;
|
|
|
|
module.exports.restart = () => {
|
|
app.relaunch();
|
|
app.exit();
|
|
};
|