Files
psf-bch-api-base/psf-bch-api.js
T

12 lines
222 B
JavaScript
Raw Normal View History

2026-01-20 08:34:04 -07:00
/*
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)
})