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;