mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-27 13:34:28 +00:00
21 lines
685 B
Python
21 lines
685 B
Python
|
from typing import *
|
|||
|
import royalnet.commands as rc
|
|||
|
from ..version import semantic
|
|||
|
|
|||
|
|
|||
|
class RoyalpackCommand(rc.Command):
|
|||
|
name: str = "royalpack"
|
|||
|
|
|||
|
description: str = "Visualizza la versione attuale di Royalpack."
|
|||
|
|
|||
|
syntax: str = ""
|
|||
|
|
|||
|
async def run(self, args: rc.CommandArgs, data: rc.CommandData) -> None:
|
|||
|
if __debug__:
|
|||
|
message = f"ℹ️ Royalpack [url=https://github.com/Steffo99/royalpack/]Unreleased[/url]\n"
|
|||
|
else:
|
|||
|
message = f"ℹ️ Royalpack [url=https://github.com/Steffo99/royalpack/releases/tag/{semantic}]{semantic}[/url]\n"
|
|||
|
if "69" in semantic:
|
|||
|
message += "(Nice.)"
|
|||
|
await data.reply(message)
|