유병우

Make description of help command

const { SlashCommandBuilder } = require('@discordjs/builders');
module.exports = {
data: new SlashCommandBuilder()
.setName('도움')
.setDescription('롸!봇의 명령어에 대한 설명입니다.')
.addStringOption((option)=>
option
.setName("명령어")
.setDescription("명령어의 설명 조회")
.setRequired(false)
),
async execute(interaction) {
await interaction.reply("도움말 제공!");
//여러가지 기능 넣을지 고민중.. 여기서 기획하고 설계할 계획
//경매금 계산기, 마리샵 정보 제공, 전투정보실 캐릭터 정보 조회 기능은 기본적으로 구현할 예정
},
};
\ No newline at end of file
......