initial commit

This commit is contained in:
andres
2023-05-21 14:52:08 +02:00
commit 268ef59b3d
27 changed files with 6025 additions and 0 deletions

9
src/prisma.module.ts Normal file
View File

@@ -0,0 +1,9 @@
import { Global, Module } from '@nestjs/common';
import { PrismaService } from './prisma.service';
@Global()
@Module({
providers: [PrismaService],
exports: [PrismaService],
})
export class PrismaModule {}