aboutsummaryrefslogtreecommitdiffstats
path: root/packages/db/index.ts
blob: fa46ca1f55eb49511488e3dc9972932772211633 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { PrismaClient } from "@prisma/client";

const prisma = new PrismaClient();

// For some weird reason accessing @prisma/client from any package is causing problems (specially in error handling).
// Re export them here instead.
export * from "@prisma/client";

export default prisma;