Skip to content

Instantly share code, notes, and snippets.

View nickreynke's full-sized avatar
:octocat:
Using GitHib rn. Duh…

Nicklas 'Nick' Reincke nickreynke

:octocat:
Using GitHib rn. Duh…
View GitHub Profile
@nickreynke
nickreynke / prisma.service.ts
Created September 27, 2020 11:02
Prisma Service for NestJS
import {
Injectable,
Logger,
OnModuleDestroy,
OnModuleInit,
} from '@nestjs/common';
import { ConfigService } from '@nestjs/config';
import { PrismaClient } from '@prisma/client';
@Injectable()