first commit

This commit is contained in:
Chris Troutner
2026-06-02 16:44:51 -07:00
commit 02128422af
27 changed files with 7994 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import Server from './bin/server.js'
const server = new Server()
process.on('unhandledRejection', (reason) => {
console.log('Unhandled rejection:', reason)
})
server.startServer()