sox/main.py

11 lines
189 B
Python

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