PagerMaid-Pyro/pagermaid/modules/update.py
2023-02-01 00:24:56 +08:00

16 lines
513 B
Python

from sys import exit
from pagermaid.common.update import update as update_function
from pagermaid.listener import listener
from pagermaid.utils import lang, Message, alias_command
@listener(is_plugin=False, outgoing=True, command=alias_command("update"),
need_admin=True,
description=lang('update_des'),
parameters="<true/debug>")
async def update(message: Message):
await update_function(len(message.parameter) > 0)
await message.edit(lang('update_success'))
exit(0)