Files
shveitechbot/handlers/admins.py
2026-02-01 12:29:33 +07:00

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)