targo-backend/prisma/postgres/prisma-postgres.module.ts

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 {}