1.8 Исправление ошибок с БД

This commit is contained in:
Verum
2025-03-02 22:44:24 +07:00
parent 247100f7e2
commit 058e71d293
5 changed files with 36 additions and 22 deletions

View File

@@ -7,6 +7,7 @@ from .start_cmd import start_cmd
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
# Объявление роутера и настройка экспорта модулей
__all__ = ("router",)
@@ -18,6 +19,7 @@ router.include_routers(
help_cmd.router,
start_time_cmd.router,
weather_cmd.router,
stats_cmd.router,
)
router.include_routers(start_cmd.router)