Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
SocketSomeone authored May 12, 2024
1 parent ff8fb8d commit 75d6d36
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand All @@ -59,7 +60,7 @@ import { Module } from '@nestjs/common';
intents: ['Guilds', 'GuildMessages', 'DirectMessages']
})
],
providers: []
providers: [AppUpdate]
})
export class AppModule {
}
Expand Down

0 comments on commit 75d6d36

Please sign in to comment.