mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
14 lines
252 B
Python
14 lines
252 B
Python
import asyncio
|
|
|
|
from .bot import Bot
|
|
from .dispatcher import Dispatcher
|
|
|
|
try:
|
|
import uvloop
|
|
except ImportError:
|
|
uvloop = None
|
|
else:
|
|
asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())
|
|
|
|
__version__ = '1.3.3.dev1'
|
|
__api_version__ = '3.6'
|