blob: 92d3e89df1cc09649f01f0819f9b4bac594d6361 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
const { SlashCommandBuilder } = require('discord.js');
const fs = require('fs');
module.exports = {
data: new SlashCommandBuilder()
.setName('help')
.setDescription('Shows the manual'),
async execute(interaction) {
await interaction.reply({content: fs.readFileSync('help.md', 'utf-8'), ephemeral: true});
},
};
|