유병우

Make description of loawa command

1 +const { SlashCommandBuilder } = require('@discordjs/builders');
2 +const open = require('open');
3 +const axios = require("axios");
4 +const cheerio = require("cheerio");
5 +
6 +module.exports = {
7 + data: new SlashCommandBuilder()
8 + .setName('로아와')
9 + .setDescription('캐릭터의 로아와 정보를 브라우저로 엽니다.')
10 + .addStringOption((option)=>
11 + option
12 + .setName("닉네임")
13 + .setDescription("캐릭터의 닉네임")
14 + .setRequired(true)
15 + ),
16 + async execute(interaction) {
17 + },
18 +};
...\ No newline at end of file ...\ No newline at end of file