Image/electron.js

9 lines
129 B
JavaScript

import('./example.mjs')
.then(() => {
process.exit(0)
})
.catch((e) => {
console.error(e)
process.exit(1)
})