mirror of
https://github.com/Permissionless-Software-Foundation/psf-bch-api-base.git
synced 2026-09-22 09:11:59 -07:00
12 lines
222 B
JavaScript
12 lines
222 B
JavaScript
/*
|
|
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)
|
|
})
|