mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
30 lines
905 B
Python
30 lines
905 B
Python
import royalnet.engineer as engi
|
||
import royalnet_telethon as rt
|
||
import pkg_resources
|
||
import royalpack.bolts as rb
|
||
|
||
|
||
@rb.capture_errors
|
||
@engi.TeleportingConversation
|
||
async def version(*, _imp: engi.PDAImplementation, _msg: engi.Message, **__):
|
||
"""
|
||
Controlla la versione attuale dei pacchetti di questo bot.
|
||
"""
|
||
|
||
# noinspection PyListCreation
|
||
msg = [
|
||
f"ℹ️ \uE01BVersioni\uE00B",
|
||
]
|
||
|
||
msg.append("")
|
||
msg.append(f"- \uE01Croyalnet\uE00C \uE01B{pkg_resources.get_distribution('royalnet').version}\uE00B")
|
||
|
||
if isinstance(_imp, rt.TelethonPDAImplementation):
|
||
msg.append(f"- \uE01Croyalnet_telethon\uE00C \uE01B{pkg_resources.get_distribution('royalnet_telethon').version}\uE00B")
|
||
|
||
msg.append(f"- \uE01Croyalpack\uE00C \uE01B{pkg_resources.get_distribution('royalpack').version}\uE00B")
|
||
|
||
await _msg.reply(text="\n".join(msg))
|
||
|
||
|
||
__all__ = ("version",)
|