Skip to content

Commit

Permalink
Help Command
Browse files Browse the repository at this point in the history
  • Loading branch information
RowwYourBoat committed Oct 18, 2023
1 parent 0ec6a2b commit 6290f5d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions commands/help.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const { SlashCommandBuilder } = require('discord.js');

module.exports = {
data: new SlashCommandBuilder()
.setName('help')
.setDescription('Returns a link to the help page.'),
async execute(interaction) {
interaction.reply({ content: 'https://github.com/RowwYourBoat/LimitedLifeIntegration/blob/master/README.md', ephemeral: true })
}
}

0 comments on commit 6290f5d

Please sign in to comment.