create-guilded-bot/packages/bot/javascript/src/structures/Command.js

7 lines
No EOL
152 B
JavaScript

module.exports = {
Command: class Command {
constructor(commandOptions) {
Object.assign(this, commandOptions);
}
}
}