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/command.py

13 lines
380 B
Python

from pyrogram import filters
from pyrogram.client import Client
from pyrogram.types import Message
from libbot.pyrogram.classes import PyroClient
@Client.on_message(
~filters.scheduled & filters.private & filters.command(["start"], prefixes=["/"]) # type: ignore
)
async def command_start(app: PyroClient, msg: Message):
await msg.reply_text("Welcome! I'm your bot!")