# main.py import asyncio from core import WS async def main(): bot = WS() await bot.connect() if __name__ == "__main__": asyncio.run(main())