mirror of
https://github.com/Xtao-Labs/misskey2telegram.git
synced 2024-11-25 06:47:38 +00:00
15 lines
340 B
Python
15 lines
340 B
Python
from pyrogram import Client, filters
|
|
from pyrogram.types import Message
|
|
|
|
|
|
des = """running"""
|
|
|
|
|
|
@Client.on_message(filters.incoming & filters.private &
|
|
filters.command(["start"]))
|
|
async def start_command(_: Client, message: Message):
|
|
"""
|
|
回应机器人信息
|
|
"""
|
|
await message.reply(des, quote=True)
|