misskey2telegram/modules/help.py

32 lines
1.1 KiB
Python
Raw Normal View History

2023-01-27 13:15:40 +00:00
from pyrogram import Client, filters
from pyrogram.types import Message
help_msg = f"""这里是 Bot 帮助
1. 你可以直接在 Timeline Topic 中发送消息目前支持文本和单张图片
2. 同样你可以在 Timeline Topic 中回复某条时间线推送进行评论操作
3. 每个时间线推送最下方都有三个按钮分别是转发喜欢翻译
4. 你可以回复时间线推送 /delete 命令来删除这条推文
5. 你可以在 Notice Topic 中回复私聊消息目前支持文本和单张图片
6. 你可以在 Notice Topic 中发送 @username@hostname 或者 @username 来查找用户对用户进行关注取消关注操作
2023-07-21 14:19:20 +00:00
7. 请注意BOT 会持续监听帖子 2 小时如果 2 小时内删帖则会同步删除 Telegram 推送
2023-07-21 14:00:49 +00:00
2023-01-27 13:15:40 +00:00
更多功能正在开发中敬请期待"""
2023-07-03 14:39:52 +00:00
@Client.on_message(filters.incoming & filters.private & filters.command(["help"]))
2023-01-27 13:15:40 +00:00
async def help_command(_: Client, message: Message):
"""
2023-07-03 14:39:52 +00:00
回应 help
2023-01-27 13:15:40 +00:00
"""
await message.reply(
help_msg,
quote=True,
)