26 lines
402 B
JavaScript
26 lines
402 B
JavaScript
const { Command } = require('../../../../interfaces/');
|
|
|
|
class TestCommand extends Command {
|
|
|
|
constructor(client) {
|
|
|
|
super(client, {
|
|
name: 'test',
|
|
module: 'utility'
|
|
});
|
|
|
|
this.client = client;
|
|
|
|
}
|
|
|
|
execute(message) {
|
|
|
|
for(const blah of message) {
|
|
console.log(blah);
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = TestCommand; |