discord-handling
v1.1.5
Published
An easy way to handle discord bot commands & events
Downloads
6
Maintainers
Readme
Exemple
const { Handle } = require('discord-handling');
let handler = new Handler({
token: process.env.token,
indexPath: __dirname,
prefix: "?"
}); handler.createCommandCollection()
.createEventCollection()
.handleEvents()
const client = handler.getClient();