8 lines
155 B
Python
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)
|