mirror of
https://github.com/Permissionless-Software-Foundation/psf-memo-db.git
synced 2026-09-21 16:52:02 -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()
|