This repository has been archived on 2024-10-15. You can view files and clone it, but cannot push or open issues or pull requests.
PyrogramBotBase/plugins/handlers/handler.py

11 lines
314 B
Python
Raw Normal View History

2023-05-14 22:30:47 +03:00
from pyrogram import filters
2023-04-01 15:25:41 +03:00
from pyrogram.client import Client
from pyrogram.types import Message
2023-08-03 22:29:47 +03:00
from classes.pyroclient import PyroClient
2023-04-01 15:25:41 +03:00
2023-05-24 12:22:24 +03:00
@Client.on_message(filters.text & filters.private) # type: ignore
async def handler_echo(app: PyroClient, message: Message):
2023-04-01 15:25:41 +03:00
await message.reply(message.text[::-1])