Files
ipfs-bch-wallet-consumer/index.js
T

9 lines
211 B
JavaScript
Raw Normal View History

2022-09-08 08:58:39 -07:00
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()