7 lines
167 B
Python
7 lines
167 B
Python
from aiogram import Router
|
|
|
|
telegram_callback_router = Router()
|
|
|
|
# Import handlers to register them
|
|
from . import my_chat_member, start_with_login # noqa: E402, F401
|