Files
MinglarBackendNestJS/src/common/database/prisma.lambda.service.ts

5 lines
207 B
TypeScript

// Re-export the singleton prisma client for Lambda handlers
// This ensures all Lambda functions use the same cached connection
import { prisma } from './prisma.client';
export const prismaClient = prisma;