From 75d6d3610d0a250a5cea42d064b90f5a5341d41b Mon Sep 17 00:00:00 2001 From: Alexey Filippov Date: Sun, 12 May 2024 19:22:41 +0300 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e0d3bdfc..e4ce39c3 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,7 @@ Once the installation process is complete, we can import the `NecordModule` into ```typescript import { NecordModule } from 'necord'; import { Module } from '@nestjs/common'; +import { AppUpdate } from './app.update'; @Module({ imports: [ @@ -59,7 +60,7 @@ import { Module } from '@nestjs/common'; intents: ['Guilds', 'GuildMessages', 'DirectMessages'] }) ], - providers: [] + providers: [AppUpdate] }) export class AppModule { }