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