Generation

generate functionSat, 22 Apr 2023

bot de musica para discord

from discord.ext import commands import discord class Music(commands.Cog): def __init__(self, bot): self.bot = bot @commands.command() async def play(self, ctx, *, song): await ctx.send(f"Playing {song}") def setup(bot): bot.add_cog(Music(bot))

Want to kickstart your project?Use the new AI Studio to create your code