Forked from psf-bch-api

This commit is contained in:
Chris Troutner
2026-01-20 08:34:04 -07:00
commit 24d4bcc3e9
91 changed files with 21325 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
/*
Main entry point for REST2NOSTR Proxy API
*/
import Server from './bin/server.js'
const server = new Server()
server.startServer().catch(err => {
console.error('Failed to start server:', err)
process.exit(1)
})