10 lines
251 B
TypeScript
10 lines
251 B
TypeScript
import { Global, Module } from '@nestjs/common';
|
|
import { PrismaPostgresService } from './prisma-postgres.service';
|
|
|
|
@Global()
|
|
@Module({
|
|
providers: [PrismaPostgresService],
|
|
exports: [PrismaPostgresService],
|
|
})
|
|
export class PrismaPostgresModule {}
|