FairRelay / ops /backend-dm /config /database.js
MouleeswaranM's picture
Upload folder using huggingface_hub
fcf8749 verified
raw
history blame
205 Bytes
const { PrismaClient } = require('@prisma/client');
const prisma = new PrismaClient({
log: [], // Suppress Prisma's internal logs; we handle errors in our own catch blocks
});
module.exports = prisma;