wewe-rss / apps /server /src /prisma /prisma.service.ts
div-wang's picture
上传文件
95d29a5 verified
raw
history blame contribute delete
253 Bytes
import { Injectable, OnModuleInit } from '@nestjs/common';
import { PrismaClient } from '@prisma/client';
@Injectable()
export class PrismaService extends PrismaClient implements OnModuleInit {
async onModuleInit() {
await this.$connect();
}
}