mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 09:46:22 +00:00
13 lines
226 B
JavaScript
Executable File
13 lines
226 B
JavaScript
Executable File
const electron = require('electron')
|
|
const app = electron.app
|
|
|
|
app.on('ready', function () {
|
|
if (process.platform === 'darwin') {
|
|
app.dock.hide()
|
|
}
|
|
|
|
finderWindow = require('./finder-window')
|
|
})
|
|
|
|
module.exports = app
|