UNPKG

chariot.js

Version:

An extremely lightweight and extensible Eris client framework

14 lines (13 loc) 352 B
/** * Basic abstract Command class for command identification */ class ChariotEvent { /** * Instantiate a new Chariot.js Event * @param {string} event A valid Eris event name! E.g. messageCreate, guildMemberAdd, etc. */ constructor(event) { this._eventName = event; } } module.exports = ChariotEvent;