from classes.bot import MyBot import os import asyncio async def main(): bot = MyBot() bot.load_extensions("plugins") await bot.start(os.environ["TOKEN"]) asyncio.run(main())