@skullbite/hibiscus
v1.2.9
Published
Command Handler for Eris
Downloads
13
Maintainers
Readme
🌺 Hibiscus
Command Handler for Eris
Official Support Server: https://discord.gg/Kzm9C3NYvq
Basic Usage
const hibiscus = require("@skullbite/hibiscus")
const bot = new hibiscus.Bot('token', {}, {prefix: "!"})
bot.addCommand(
new hibiscus.Command({name: "greet"})
.setExec(async function(ctx) {
ctx.send(`Hi ${ctx.author.username}`)
})
)
bot.connect()