slash-djs
v1.0.0
Published
Crie slash comands mais 'facil' OwO
Downloads
3
Readme
Como usar
const discord = require("discord.js")
const bot = new discord.Client()
const slash = require("slash-djs")
bot.on('message', async(message) => {
if (message.content === "prefix!lol") {
const Slash = new slash(bot)
console.log(Slash.create(null, "command", "wow! a command"))
}
}
bot.login("bot Token")