Files

10 lines
185 B
JavaScript
Raw Permalink Normal View History

2026-06-02 16:44:51 -07:00
import Server from './bin/server.js'
const server = new Server()
process.on('unhandledRejection', (reason) => {
console.log('Unhandled rejection:', reason)
})
server.startServer()