mirror of
https://github.com/Permissionless-Software-Foundation/bch-dex.git
synced 2026-09-22 09:11:59 -07:00
9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
import Server from './bin/server.js'
|
|
const server = new Server()
|
|
|
|
process.on('unhandledRejection', (reason, promise) => {
|
|
console.log(`Handling ${reason.code} error. stack: `, reason)
|
|
})
|
|
|
|
server.startServer()
|