2020-07-04 12:23:10 +02:00
|
|
|
const { Command } = require('../../../../interfaces/');
|
|
|
|
|
2020-07-23 22:40:20 +02:00
|
|
|
class TestCommand extends Command {
|
2020-07-04 12:23:10 +02:00
|
|
|
|
|
|
|
constructor(client) {
|
|
|
|
|
|
|
|
super(client, {
|
|
|
|
name: 'test',
|
|
|
|
module: 'utility'
|
|
|
|
});
|
|
|
|
|
|
|
|
this.client = client;
|
|
|
|
|
2020-08-08 00:21:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
execute(message) {
|
|
|
|
|
2020-08-16 09:27:49 +02:00
|
|
|
for(const blah of message) {
|
|
|
|
console.log(blah);
|
|
|
|
}
|
2020-07-04 12:23:10 +02:00
|
|
|
|
|
|
|
}
|
2020-08-08 00:21:28 +02:00
|
|
|
|
2020-07-04 12:23:10 +02:00
|
|
|
}
|
|
|
|
|
2020-07-23 22:40:20 +02:00
|
|
|
module.exports = TestCommand;
|