galactic-bot/structure/client/components/commands/utility/Test.js
2020-08-17 13:26:57 -07:00

25 lines
393 B
JavaScript

const { Command } = require('../../../../interfaces/');
class TestCommand extends Command {
constructor(client) {
super(client, {
name: 'test',
module: 'developer',
archivable: false,
restricted: true
});
this.client = client;
}
async execute(message) {
}
}
module.exports = TestCommand;