This repository has been archived on 2024-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
Nexus-Polestar/app/electron/main/index.ts

3 lines
130 B
TypeScript
Raw Normal View History

2023-08-30 00:46:33 -05:00
import {app, BrowserWindow} from "electron"
let mainWindow = require('./window')
2023-08-30 00:46:33 -05:00
app.whenReady().then(() => {mainWindow.launch()})