10 lines
161 B
Python
10 lines
161 B
Python
from aiogram import Router
|
|
from aiogram.types import Message
|
|
|
|
router = Router()
|
|
|
|
|
|
@router.message()
|
|
async def echo(msg: Message):
|
|
await msg.answer(msg.text)
|