mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
9 lines
163 B
TypeScript
9 lines
163 B
TypeScript
import prisma from 'lib/prisma';
|
|
|
|
export async function getSession(id: string) {
|
|
return prisma.client.session.findUnique({
|
|
where: {
|
|
id,
|
|
},
|
|
});
|
|
}
|