Add files via upload

This commit is contained in:
Forbirdden 2025-03-19 14:54:23 +05:00 committed by GitHub
parent 5daf5dda55
commit dd88af490a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 33 additions and 0 deletions

13
main.js Normal file
View File

@ -0,0 +1,13 @@
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()
})

20
package.json Normal file
View File

@ -0,0 +1,20 @@
{
"name": "yescord-desktop",
"version": "1.0.0",
"description": "Yescord desktop client",
"main": "main.js",
"scripts": {
"start": "electron ."
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Yescord",
"desktop",
"client"
],
"author": "GitHub",
"license": "MIT",
"devDependencies": {
"electron": "^35.0.2"
}
}