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