import { Global, Module } from '@nestjs/common'; import { PrismaLegacyService } from 'prisma/prisma-legacy/prisma-legacy.service'; @Global() @Module({ providers: [PrismaLegacyService], exports: [PrismaLegacyService], }) export class PrismaLegacyModule {}