mirror of
https://github.com/kjanat/livedash-node.git
synced 2026-01-16 07:32:11 +01:00
8 lines
155 B
TypeScript
8 lines
155 B
TypeScript
import { prisma } from "./prisma";
|
|
|
|
export async function findUserByEmail(email: string) {
|
|
return prisma.user.findUnique({
|
|
where: { email },
|
|
});
|
|
}
|