Skip to content

Commit

Permalink
feat: add h slash command
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperchupuDev committed Mar 19, 2022
1 parent bd613bc commit 3095625
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions interactions/commands/h.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
name: 'h',

async execute(client, interaction) {
interaction.reply({
embeds: [{
title: 'h',
image: {
url: 'https://cdn.discordapp.com/attachments/439531641539526666/861256439209394176/arg-h-trans.gif'
},
color: client.config.color
}]
});
}
};

0 comments on commit 3095625

Please sign in to comment.