mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-08 12:27:44 +00: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");
|