feat(db/prisma): adding the database inplementation / schema

This commit is contained in:
Raphael 2025-07-27 18:27:46 +02:00
parent 4a6031ff32
commit bca3bd0c2a
2 changed files with 61 additions and 0 deletions

3
src/lib/prisma.ts Normal file
View file

@ -0,0 +1,3 @@
import { PrismaClient } from '@prisma/client';
export const prisma = new PrismaClient();