Skip to content

Commit 3d1a5a5

Browse files
committed
Changed README language to english
1 parent 224e49b commit 3d1a5a5

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# discord-py-slash-command
2-
그냥 심심해서 만들어봤어요
2+
Simple Discord Slash Command extension for [discord.py](https://github.com/Rapptz/discord.py).
33

4-
## 예제
4+
## Example
55
```py
66
import discord
77
from discord.ext import commands
@@ -14,16 +14,16 @@ slash = SlashCommand(bot)
1414

1515
@slash.slash(name="test")
1616
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])
1919

2020

21-
bot.run("디스코드 토큰")
21+
bot.run("discord_token")
2222
```
2323

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)
2727

2828
## DOCS
29-
언젠가 만들...려나?
29+
Not yet ready.

0 commit comments

Comments
 (0)