mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-15 20:02:22 +00:00
Add logging for receiving updates
This commit is contained in:
parent
334975bf21
commit
93a330c1f2
3 changed files with 33 additions and 1 deletions
|
|
@ -1,8 +1,21 @@
|
|||
from .api import methods, types
|
||||
from .api.client import session
|
||||
from .api.client.bot import Bot
|
||||
from .dispatcher import filters
|
||||
from .dispatcher.dispatcher import Dispatcher
|
||||
from .dispatcher.router import Router
|
||||
|
||||
__all__ = ("__api_version__", "__version__", "types", "methods", "Bot", "session")
|
||||
__all__ = (
|
||||
"__api_version__",
|
||||
"__version__",
|
||||
"types",
|
||||
"methods",
|
||||
"Bot",
|
||||
"session",
|
||||
"Dispatcher",
|
||||
"Router",
|
||||
"filters",
|
||||
)
|
||||
|
||||
__version__ = "3.0.0a0"
|
||||
__api_version__ = "4.4"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue