1.0.0 • Published 3 years ago

slash-djs v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

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")