v1.2.1
This commit is contained in:
12
bot/handlers/commands/__init__.py
Normal file
12
bot/handlers/commands/__init__.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from aiogram import Router
|
||||
from .start import router as start_cmd_router
|
||||
from .help import router as help_cmd_router
|
||||
|
||||
# Настройка экспорта и роутера
|
||||
__all__ = ('router',)
|
||||
router: Router = Router(name="cmd_router")
|
||||
|
||||
# Подготовка роутера команд
|
||||
router.include_routers(start_cmd_router,
|
||||
help_cmd_router,
|
||||
)
|
||||
Reference in New Issue
Block a user