aiozab/routers/commands/common_commands.py
2025-02-23 12:05:49 +05:00

14 lines
325 B
Python

from aiogram import Router, types
router = Router(name=__name__)
@router.message()
async def unexpected_message(message: types.Message):
await message.answer(text="Неизвестная команда. попробуйте ещё раз")
@router.message()
async def cancel_button(message: types.Message):
pass