mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-25 16:36:34 -05:00
9 lines
126 B
TypeScript
9 lines
126 B
TypeScript
import { auth } from "./auth";
|
|
|
|
Bun.serve({
|
|
fetch(request, server) {
|
|
auth;
|
|
return new Response("Hello, World!");
|
|
},
|
|
});
|