mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 11:34:18 +00:00
14 lines
275 B
Python
14 lines
275 B
Python
import royalnet.engineer as engi
|
|
import royalpack.bolts as rb
|
|
|
|
|
|
@rb.capture_errors
|
|
@engi.TeleportingConversation
|
|
async def ping(*, _msg: engi.Message, **__):
|
|
"""
|
|
Gioca a ping pong con il bot. 🏓
|
|
"""
|
|
await _msg.reply(text="🏓 Pong!")
|
|
|
|
|
|
__all__ = ("ping",)
|