PluralKit/src/bot_main.py
2018-12-10 19:32:31 +01:00

11 lines
No EOL
235 B
Python

import asyncio
try:
# uvloop doesn't work on Windows, therefore an optional dependency
import uvloop
asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())
except ImportError:
pass
from pluralkit import bot
bot.run()