first commit

This commit is contained in:
Chris Troutner
2025-11-09 16:16:37 -08:00
commit ba2afd47a4
61 changed files with 13847 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)
})