Update README.md

This commit is contained in:
DjDeveloper 2020-12-17 14:29:36 +05:30 committed by GitHub
parent 7a67fb67d9
commit 6c8d1bc44c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 4 deletions

View File

@ -101,10 +101,10 @@ client.commands.add(PingCommand)
client.connect('super secret token comes here', Intents.All) client.connect('super secret token comes here', Intents.All)
``` ```
Or with Decorator! Or with Decorators!
```ts ```ts
import { import {
CommandClient, Client,
event, event,
Intents, Intents,
command, command,
@ -132,10 +132,9 @@ class MyClient extends CommandClient {
// Connect to gateway // Connect to gateway
// Replace with your bot's token and intents (Intents.All, Intents.None, Intents.Presence, Intents.GuildMembers) // Replace with your bot's token and intents (Intents.All, Intents.None, Intents.Presence, Intents.GuildMembers)
client.connect('super secret token comes here', Intents.All) new MyClient().connect('super secret token comes here', Intents.All)
``` ```
## Docs ## Docs
Documentation is available for `main` (branch) and `stable` (release). Documentation is available for `main` (branch) and `stable` (release).