1.11 работа с /me

This commit is contained in:
Verum
2025-03-07 03:10:39 +07:00
parent 2c0e451581
commit 3fccf1a52f
12 changed files with 163 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ from .start_time_cmd import start_time_cmd
from .help_cmd import help_cmd
from .weather_cmd import weather_cmd
from .stats import stats_cmd
from .my_cmd import my_cmd
# Объявление роутера и настройка экспорта модулей
__all__ = ("router",)
@@ -20,6 +21,7 @@ router.include_routers(
start_time_cmd.router,
weather_cmd.router,
stats_cmd.router,
my_cmd.router,
)
router.include_routers(start_cmd.router)