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

16 lines
553 B
Python
Raw Permalink 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/__init__.py
# Инициализация пакета keyboards, для работы с клавиатурами
from aiogram import Router
from .reply_kb import router as reply_kb_router
from .inline_kb import *
from .reply_kb import *
# Объявление роутера и настройка экспорта модулей
__all__ = ("router", "inline_kb", "reply_kb",)
router = Router(name="kb_router")
# Список подключаемых роутеров сверху-вниз
router.include_routers(reply_kb_router)