/
opt
/
mawid
/
packages
/
db
/
src
/
/opt/mawid/packages/db/src
mkdir
upload
Name
Size
Mode
Actions
index.ts
257
0644
edit
dl
rm
Edit:
/opt/mawid/packages/db/src/index.ts
(257B)
import { PrismaClient } from '@prisma/client'; export * from '@prisma/client'; let prisma: PrismaClient | undefined; /** Single shared client per process. */ export function getPrisma(): PrismaClient { prisma ??= new PrismaClient(); return prisma; }
Save
cmd:
run