mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 11:34:18 +00:00
13 lines
318 B
Python
13 lines
318 B
Python
|
import royalnet.engineer as engi
|
||
|
|
||
|
|
||
|
@engi.PartialCommand.new(name="ping", syntax="")
|
||
|
def ping(_sentry: engi.Sentry, _msg: engi.Message, **__):
|
||
|
"""
|
||
|
A way to check if the bot is working: it will always reply to this command with "🏓 Pong!".
|
||
|
"""
|
||
|
await _msg.send_reply("🏓 Pong!")
|
||
|
|
||
|
|
||
|
__all__ = ("ping",)
|