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-09 20:16:29 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a2e7ececb619ae74a964e7ff41d1de171e3c8948
a2e7ecec
1 parent
afc4e28e
Make description of loawa command
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
commands/loawa.js
commands/loawa.js
0 → 100644
View file @
a2e7ece
const
{
SlashCommandBuilder
}
=
require
(
'@discordjs/builders'
);
const
open
=
require
(
'open'
);
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