Files
MinglarBackendNestJS/prisma/prisma.ts

10 lines
237 B
TypeScript
Raw Normal View History

2025-11-26 12:00:48 +05:30
// prisma.ts
// Re-export from the main singleton for consistency
import { prisma } from '../src/common/database/prisma.client';
2025-11-26 12:00:48 +05:30
export { prisma };
2025-11-26 12:00:48 +05:30
2025-11-12 16:03:57 +05:30
process.on('SIGINT', async () => {
await prisma.$disconnect();
process.exit(0);
});