5 lines
207 B
TypeScript
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; |