mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
11 lines
No EOL
235 B
Python
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() |