mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
21 lines
693 B
Python
21 lines
693 B
Python
from typing import *
|
||
import royalnet.commands as rc
|
||
|
||
from ..version import semantic
|
||
|
||
|
||
class RoyalpackCommand(rc.Command):
|
||
name: str = "royalpackversion"
|
||
|
||
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)
|