galactic-bot/structure/client/components/commands/utility/Test.js

25 lines
393 B
JavaScript
Raw Normal View History

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;