mirror of
https://github.com/Permissionless-Software-Foundation/psf-memo.git
synced 2026-09-21 16:52:01 -07:00
10 lines
185 B
JavaScript
10 lines
185 B
JavaScript
import Server from './bin/server.js'
|
|
|
|
const server = new Server()
|
|
|
|
process.on('unhandledRejection', (reason) => {
|
|
console.log('Unhandled rejection:', reason)
|
|
})
|
|
|
|
server.startServer()
|