Showing
1 changed file
with
18 additions
and
0 deletions
commands/info.js
0 → 100644
1 | +const { SlashCommandBuilder } = require('@discordjs/builders'); | ||
2 | +const { MessageEmbed } = require('discord.js'); | ||
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 |
-
Please register or login to post a comment