File size: 253 Bytes
ca668ce
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { Injectable, OnModuleInit } from '@nestjs/common';
import { PrismaClient } from '@prisma/client';

@Injectable()
export class PrismaService extends PrismaClient implements OnModuleInit {
  async onModuleInit() {
    await this.$connect();
  }
}