Update description

This commit is contained in:
iwumingz 2022-04-11 15:54:54 +08:00
parent d422d494be
commit 0cc9fd7a76
3 changed files with 4 additions and 5 deletions

View File

@ -1,5 +1,4 @@
# 注意如无修改能力勿随意更改顶级的Key
# 建议如无修改能力勿改动容器名即sycgram
# 按需改动
# 指令 - 例子 - 格式
@ -155,7 +154,7 @@ upload:
download:
cmd: download
format: -download <无|文件路径>
usage: 回复一条文件/视频/图片/音乐等可下载的消息。如无指定文件路径,则默认存放至容器默认挂载的目录
usage: 回复一条文件/视频/图片/音乐等可下载的消息。如无指定文件路径,则默认存放至data目录
ip:
cmd: ip

View File

@ -16,7 +16,7 @@ from tools.updates import (get_alias_of_cmds, is_latest_version,
@Client.on_message(command("restart"))
async def restart(_: Client, msg: Message):
"""重启容器"""
"""重启"""
text = f"**{SYCGRAM_INFO}**\n> # `Restarting {SYCGRAM} ...`"
await msg.edit_text(text=text, parse_mode='md')
sys.exit()

View File

@ -11,7 +11,7 @@ from tools.helpers import Parameters, delete_this, show_cmd_tip, show_exception
@Client.on_message(command("upload"))
async def upload(cli: Client, msg: Message):
"""上传容器内的文件"""
"""上传文件"""
cmd, where = Parameters.get(msg)
if not where:
return await show_cmd_tip(msg, cmd)
@ -37,7 +37,7 @@ async def upload(cli: Client, msg: Message):
@Client.on_message(command("download"))
async def download(_: Client, msg: Message):
"""下载目标消息的文件到挂载目录"""
"""下载目标消息的文件"""
cmd, where = Parameters.get(msg)
replied_msg = msg.reply_to_message
if not replied_msg: