8 lines
194 B
TypeScript
8 lines
194 B
TypeScript
import { Elysia } from 'elysia';
|
|
import { auth } from '../auth';
|
|
|
|
export const betterAuthRoutes = new Elysia()
|
|
.all('/auth/*', async ({ request }) => {
|
|
return auth.handler(request);
|
|
});
|