baudy/cli.ts
Corey Johnson 01d72a31e6 Fix bundled CLI to explicitly call Bun.serve()
The bundle doesn't use export default, so the server
needs to be started explicitly.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 15:53:14 -07:00

4 lines
71 B
TypeScript

#!/usr/bin/env bun
import server from './src/server'
Bun.serve(server)