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