import discord
import asyncio
from discord.ext import commands
import os
from music_cog import music_cog
from help_cog import help_cog

intents = discord.Intents.default()
client = discord.Client(intents = intents)
bot = commands.Bot(command_prefix="/", intents = intents)

bot.remove_command("help")
asyncio.run(bot.add_cog(help_cog(bot)))
bot.add_cog(music_cog(bot))

bot.run(os.getenv("TOKEN"))
bot.add_command(play)
bot.add_command(pause)
bot.add_command(resume)
bot.add_command(help)
bot.add_command(clear)
bot.add_command(clearAll)
bot.add_command(skip)
bot.add_command(queue)
bot.add_command(leave)











