channel-block-tg/handlers/users/echo.py
2020-04-14 21:03:07 +03:00

8 lines
155 B
Python

from aiogram import types
from loader import dp
@dp.message_handler()
async def bot_echo(message: types.Message):
await message.answer(message.text)