Toggle navigation
Toggle navigation
This project
Loading...
Sign in
유병우
/
lostark-discord-bot
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
유병우
2022-05-19 00:00:19 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
45d75494883b49041d450d7276f078417b1b7569
45d75494
1 parent
5e0feb74
Make description of info command
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
commands/info.js
commands/info.js
0 → 100644
View file @
45d7549
const
{
SlashCommandBuilder
}
=
require
(
'@discordjs/builders'
);
const
{
MessageEmbed
}
=
require
(
'discord.js'
);
const
axios
=
require
(
"axios"
);
const
cheerio
=
require
(
"cheerio"
);
module
.
exports
=
{
data
:
new
SlashCommandBuilder
()
.
setName
(
'정보'
)
.
setDescription
(
'캐릭터의 전투정보실 정보를 조회합니다.'
)
.
addStringOption
((
option
)
=>
option
.
setName
(
"닉네임"
)
.
setDescription
(
"캐릭터의 닉네임"
)
.
setRequired
(
true
)
),
async
execute
(
interaction
)
{
}
};
\ No newline at end of file
Please
register
or
login
to post a comment