djsify
Version:
A powerful and flexible Discord bot framework for building feature-rich Discord bots with ease. Supports message commands, slash commands, and button interactions.
17 lines (16 loc) • 427 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MessageCommandFile = void 0;
class MessageCommandFile {
/**
* @readonly
* @param {object} data - The command data
* @param {Function} execute - The execute function
*/
constructor(data, execute) {
this.data = data;
this.execute = execute;
}
}
exports.MessageCommandFile = MessageCommandFile;
;