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