wishlist-app/src/api/services/prisma/index.ts
Benny Samir Hierl 32c16ff663 #1 Create Endpoint added
Signed-off-by: Benny Samir Hierl <bennysamir@posteo.de>
2022-02-05 09:53:46 +01:00

9 lines
187 B
TypeScript

import { PrismaClient, Prisma } from '@prisma/client'
const client = new PrismaClient()
const errorType = Prisma.PrismaClientKnownRequestError
export default {
client,
errorType,
}