UNPKG

discord-handler.js

Version:

A simple Discord.js command & event handler with support for slash, message, and categories.

10 lines (8 loc) 192 B
class Event { constructor(options) { this.name = options.name; this.once = options.once || false; this.run = options.run; } } module.exports = Event;