import { prisma } from "./prisma"; export async function findUserByEmail(email: string) { return prisma.user.findUnique({ where: { email }, }); }