2018-07-11 22:47:44 +00:00
|
|
|
import asyncio
|
2018-07-18 13:26:15 +00:00
|
|
|
|
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()
|