import { PrismaAdapter } from '@lucia-auth/adapter-prisma' import { Lucia } from 'lucia' import prisma from '../prisma/client' export const auth = new Lucia(new PrismaAdapter(prisma.session, prisma.user)) export type Auth = typeof auth