This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Telegram/modules/commands/cancel.py

9 lines
361 B
Python
Raw Normal View History

2022-12-23 02:40:23 +02:00
from app import app
from pyrogram import filters
2022-12-27 14:36:54 +02:00
from pyrogram.types import Message
from pyrogram.client import Client
2022-12-23 02:40:23 +02:00
from modules.utils import should_quote
@app.on_message(~ filters.scheduled & filters.command("cancel", prefixes=["/"]))
2022-12-27 14:36:54 +02:00
async def command_cancel(app: Client, msg: Message):
2022-12-23 02:40:23 +02:00
await msg.reply_text("Command exists.", quote=should_quote(msg))