djs-builder 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -113,9 +113,17 @@ const starterOptions: StarterOptions = {
|
|
|
113
113
|
const bot = new Starter();
|
|
114
114
|
|
|
115
115
|
// Start the bot
|
|
116
|
-
bot.start(discordClient, starterOptions)
|
|
117
|
-
|
|
118
|
-
|
|
116
|
+
const botstarted = bot.start(discordClient, starterOptions)
|
|
117
|
+
|
|
118
|
+
console.log(botstarted)
|
|
119
|
+
// return {
|
|
120
|
+
// mongodb
|
|
121
|
+
// versedb
|
|
122
|
+
// slashSize
|
|
123
|
+
// prefixSize
|
|
124
|
+
// eventSize
|
|
125
|
+
// };
|
|
126
|
+
|
|
119
127
|
```
|
|
120
128
|
|
|
121
129
|
## ButtonManager
|