PluralKit/src/bot_main.py

11 lines
235 B
Python
Raw Normal View History

2018-07-11 22:47:44 +00:00
import asyncio
2018-12-10 18:32:31 +00:00
try:
# uvloop doesn't work on Windows, therefore an optional dependency
import uvloop
asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())
except ImportError:
pass
2018-07-11 22:47:44 +00:00
from pluralkit import bot
2018-10-27 20:00:41 +00:00
bot.run()