Files
telegram-bot-for-manipulate…/app/handlers/components.py
ronis_0505 5662d8877a
Some checks failed
continuous-integration/drone Build is failing
MVP
2025-07-27 22:17:28 +03:00

10 lines
327 B
Python

from aiogram import Router
from aiogram.filters import Command
from aiogram.types import Message
components_router = Router()
@components_router.message(Command(commands="components"))
async def components(message: Message):
await message.answer("Функция пока не доступна")
await message.delete()