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