UNPKG

@gary50613/discord.js-command-handler

Version:
15 lines (13 loc) 288 B
class Group { constructor(name, description) { this.name = name this.description = description this.commands = [] } register(command) { if(Array.isArray(command)) return command.forEach(this.register) this.commands.push(command) } } module.exports = Group