mirror of
https://github.com/Brooooooklyn/Image.git
synced 2026-01-25 14:43:54 +00:00
9 lines
129 B
JavaScript
9 lines
129 B
JavaScript
import('./example.mjs')
|
|
.then(() => {
|
|
process.exit(0)
|
|
})
|
|
.catch((e) => {
|
|
console.error(e)
|
|
process.exit(1)
|
|
})
|