galactic-bot/structure/client/components/commands/utility/Test.js

23 lines
324 B
JavaScript

const { Command } = require('../../../../interfaces/');
class TestCommand extends Command {
constructor(client) {
super(client, {
name: 'test',
module: 'utility'
});
this.client = client;
}
execute(message) {
}
}
module.exports = TestCommand;