mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 20:57:17 +01:00
7 lines
133 B
JavaScript
7 lines
133 B
JavaScript
import prisma from 'lib/prisma';
|
|
|
|
export async function getUser(where) {
|
|
return prisma.client.user.findUnique({
|
|
where,
|
|
});
|
|
}
|