chore: better information in readme

This commit is contained in:
Supan Adit Pratama 2024-10-30 21:03:57 +07:00
parent de03a072f6
commit acc0c7bafd

View File

@ -52,9 +52,9 @@ $ npm install @aditama-labs/nest-autocrud
// Your Module
@Module({
imports: [
// This is the magic
// This module will automatically map your model to the controller
PrismaModule.forRoot({
delegate: (prisma) => prisma.user,
delegate: (prisma: PrismaClient) => prisma.user,
}),
],
controllers: [AppController],