Files
PrimoPearlBot/BotCode/keyboards/reply_kb/__init__.py
2025-02-08 19:12:38 +07:00

15 lines
482 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# BotCode/keyboards/reply_kb/__init__.py
# Инициализация пакета reply_kb, для работы с клавиатурами
from aiogram import Router
from .help_kb import router as help_kb_router
# Объявление роутера и настройка экспорта модулей
__all__ = ("router",)
router = Router(name=__name__)
# Список подключаемых роутеров сверху-вниз
router.include_routers(help_kb_router)