mirror of
https://github.com/The-Stratosphere-Solutions/Yescord-Desktop.git
synced 2025-06-24 05:42:57 +03:00
14 lines
266 B
JavaScript
14 lines
266 B
JavaScript
const { app, BrowserWindow } = require('electron')
|
|
|
|
function createWindow () {
|
|
const win = new BrowserWindow({
|
|
titleBarStyle: 'hidden',
|
|
titleBarOverlay: true
|
|
})
|
|
win.loadURL('http://torw.ct.ws/yesc/')
|
|
}
|
|
|
|
app.whenReady().then(() => {
|
|
createWindow()
|
|
})
|