18 lines
284 B
JavaScript
18 lines
284 B
JavaScript
const { Command } = require('../../../../interfaces/');
|
|
|
|
class TestCommand extends Command {
|
|
|
|
constructor(client) {
|
|
|
|
super(client, {
|
|
name: 'test',
|
|
module: 'utility'
|
|
});
|
|
|
|
this.client = client;
|
|
|
|
|
|
}
|
|
}
|
|
|
|
module.exports = TestCommand; |