forgot to save the file

This commit is contained in:
insert-usernamehere 2023-04-15 09:29:24 -04:00
parent 153bb2e157
commit 831e37323c

View file

@ -0,0 +1,15 @@
import disnake
from disnake.ext import commands
from dotenv import load_dotenv
import os
load_dotenv()
bot = commands.Bot(command_prefix='.')
@bot.message_command(name="Transcrible")
async def transcribe(inter: disnake.ApplicationCommandInteraction, message: disnake.Message):
# Reversing the message and sending it back.
await inter.message.attachments[0].save("audio.mp3")
await inter.response.send_message("audio saved")
bot.run(os.getenv("TOKEN"))