유병우

Make description of auction command

const { SlashCommandBuilder } = require('@discordjs/builders');
const { MessageEmbed } = require('discord.js');
module.exports = {
data: new SlashCommandBuilder()
.setName('경매')
.setDescription('경매에서 최대로 이득을 볼 수 있는 입찰가를 계산합니다.')
.addStringOption((option)=>
option
.setName("경매가")
.setDescription("경매 물품의 경매장 최저가")
.setRequired(true)
),
async execute(interaction) {
},
};
\ No newline at end of file