mirror of
https://github.com/TeamPGM/PagerMaid-Pyro.git
synced 2024-11-21 22:28:04 +00:00
21 lines
537 B
Python
21 lines
537 B
Python
from sys import exit
|
|
|
|
from pagermaid.common.update import update as update_function
|
|
from pagermaid.enums import Message
|
|
from pagermaid.listener import listener
|
|
from pagermaid.utils import lang, 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)
|