chore: added prisma module

This commit is contained in:
ankitsridhar16
2022-12-07 20:52:31 +05:30
parent 9487348ba8
commit 06ef17048a
5 changed files with 32 additions and 3 deletions

View File

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