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