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',
|
2020-08-17 22:26:57 +02:00
|
|
|
module: 'developer',
|
|
|
|
archivable: false,
|
|
|
|
restricted: true
|
2020-07-04 12:23:10 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
this.client = client;
|
|
|
|
|
2020-08-08 00:21:28 +02:00
|
|
|
}
|
|
|
|
|
2020-08-17 22:26:57 +02:00
|
|
|
async execute(message) {
|
2020-08-08 00:21:28 +02:00
|
|
|
|
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;
|