let { Command } = require("discord-akairo") module.exports = class extends Command { constructor() { super("H", { regex: /^H$/i, category: "responders", description: "Dms you emoji H." }) } async exec(message, args) { try { await message.author.send('🇭') } catch(e) { } } }