fix(app name): Changing index.js to psf-bch-api.js

This commit is contained in:
Chris Troutner
2025-11-16 10:25:55 -08:00
parent 8fe5a0b22d
commit 550c763df6
2 changed files with 1 additions and 1 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)
})