Command Handler for Eris
npm install @skullbite/hibiscus
js
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()
``