Files
the-biergarten-app/prisma/client.ts
Aaron William Po 0065525f5c Add beer post, brewery post GET service and page
Add prettier, eslint config
2023-01-22 20:56:33 -05:00

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;