Dateien hochladen nach „“

This commit is contained in:
mloe 2022-10-19 23:57:15 +02:00
parent ff9e1a1f38
commit 04a0922c17

4
bot.py
View File

@ -28,6 +28,10 @@ async def on_ready():
async def add(ctx, left: int, right: int):
await ctx.send(left + right)
@bot.command()
async def sub(ctx, left: int, right: int):
await ctx.send(left - right)
@bot.command()
async def update(ctx):
subprocess.Popen('./update.sh')