mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
12 lines
196 B
TypeScript
12 lines
196 B
TypeScript
import { PrismaClient } from '@prisma/client';
|
|
|
|
const DBClient = {
|
|
instance: new PrismaClient(),
|
|
};
|
|
|
|
export type IDBClient = typeof DBClient;
|
|
|
|
Object.freeze(DBClient);
|
|
|
|
export default DBClient;
|