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)
```
Or with Decorator!
Or with Decorators!
```ts
import {
CommandClient,
Client,
event,
Intents,
command,
@ -132,10 +132,9 @@ class MyClient extends CommandClient {
// Connect to gateway
// 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
Documentation is available for `main` (branch) and `stable` (release).