mirror of
https://github.com/ThisIsBenny/wishlist-app.git
synced 2025-06-07 05:57:41 +00:00
9 lines
187 B
TypeScript
9 lines
187 B
TypeScript
import { PrismaClient, Prisma } from '@prisma/client'
|
|
|
|
const client = new PrismaClient()
|
|
const errorType = Prisma.PrismaClientKnownRequestError
|
|
|
|
export default {
|
|
client,
|
|
errorType,
|
|
}
|