mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-24 08:01:56 -05:00
8 lines
127 B
TypeScript
8 lines
127 B
TypeScript
import { auth } from "./auth";
|
|
|
|
Bun.serve({
|
|
fetch: auth.handler,
|
|
port: 4000,
|
|
});
|
|
console.log("Server running on port 4000");
|