mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-02 04:49:32 +01:00
10 lines
163 B
TypeScript
10 lines
163 B
TypeScript
import prisma from 'lib/prisma';
|
|
|
|
export async function getSession(id: string) {
|
|
return prisma.client.session.findUnique({
|
|
where: {
|
|
id,
|
|
},
|
|
});
|
|
}
|