mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-15 11:25:54 +00:00
Refactoring and write doc's for Bot class. Split bot to 2 classes
This commit is contained in:
parent
efad13156e
commit
ba1c473f0c
7 changed files with 1021 additions and 192 deletions
|
|
@ -1,3 +1,10 @@
|
|||
from .bot import Bot
|
||||
|
||||
__version__ = '0.2b1'
|
||||
|
||||
major_version = 0
|
||||
minor_version = 2
|
||||
build_type = 'b'
|
||||
build_number = 1
|
||||
|
||||
|
||||
__version__ = f"{major_version}.{minor_version}{build_type}{build_number}"
|
||||
|
|
|
|||
1073
aiogram/bot.py
1073
aiogram/bot.py
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue