File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
# discord-py-slash-command
2
- 그냥 심심해서 만들어봤어요
2
+ Simple Discord Slash Command extension for [ discord.py ] ( https://github.com/Rapptz/discord.py ) .
3
3
4
- ## 예제
4
+ ## Example
5
5
``` py
6
6
import discord
7
7
from discord.ext import commands
@@ -14,16 +14,16 @@ slash = SlashCommand(bot)
14
14
15
15
@slash.slash (name = " test" )
16
16
async def _test (ctx : SlashContext):
17
- embed = discord.Embed(title = " 임베드 " )
18
- await ctx.send(text = " 테스트 " , embeds = [embed])
17
+ embed = discord.Embed(title = " embed test " )
18
+ await ctx.send(text = " test " , embeds = [embed])
19
19
20
20
21
- bot.run(" 디스코드 토큰 " )
21
+ bot.run(" discord_token " )
22
22
```
23
23
24
- ## 설치
25
- 그냥 알아서 클론해서 ` discord_slash ` 파일 갖다 쓰세요
26
- ~~ 어차피 조금만 있으면 디코파이가 지원하겠죠 ~~
24
+ ## Installation
25
+ For now clone this repository and use ` discod_slash ` folder.
26
+ (Maybe will upload this at PyPi soon)
27
27
28
28
## DOCS
29
- 언젠가 만들...려나?
29
+ Not yet ready.
You can’t perform that action at this time.
0 commit comments