// CLI entry: `node server/index.js` (or `npm start`). For the Electron build, // see `electron/main.js`, which calls `startServer()` directly. import { startServer } from './start.js'; startServer().catch((err) => { console.error('[oradio] failed to start:', err); process.exit(1); });