because I got bored of customising my CV for every job
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at b32a4e15994e2f7efdaadcf3a53f11c33e1df570 8 lines 194 B view raw
1import { Module } from "@nestjs/common"; 2import { PrismaService } from "./prisma.service"; 3 4@Module({ 5 providers: [PrismaService], 6 exports: [PrismaService], 7}) 8export class DatabaseModule {}