15 lines
No EOL
466 B
Python
15 lines
No EOL
466 B
Python
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")) |