mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 11:34:18 +00:00
15 lines
295 B
Python
15 lines
295 B
Python
import royalnet.engineer as engi
|
|
|
|
import royalpack.bolts as rb
|
|
|
|
|
|
@rb.capture_errors
|
|
@engi.TeleportingConversation
|
|
async def ahnonlosoio(*, _msg: engi.Message, **__):
|
|
"""
|
|
Ah, non lo so io!
|
|
"""
|
|
await _msg.reply(text=r"¯\_(ツ)_/¯ Ah, non lo so io!")
|
|
|
|
|
|
__all__ = ("ahnonlosoio",)
|