Something went wrong. Try again.
because I got bored of customising my CV for every job
Something went wrong. Try again.
TypeScript
123456789import { Module } from "@nestjs/common";import { PrismaService } from "./prisma.service";
@Module({ providers: [PrismaService], exports: [PrismaService],})export class DatabaseModule {}