// prisma.ts // Re-export from the main singleton for consistency import { prisma } from '../src/common/database/prisma.client'; export { prisma }; process.on('SIGINT', async () => { await prisma.$disconnect(); process.exit(0); });