const Command = require("../../src/structures/Command"); module.exports = class Setup extends Command { constructor() { super({ name: "setup", description: "x", aliases: ["s"], module: "Developers", cooldown: 0, guildOnly: false, developerOnly: true }); } async command(ctx) { let x = await ctx.utils.db.prefix .remove(ctx) .catch(err => console.error(err)); //' console.log(x); } };