mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 11:34:18 +00:00
12 lines
291 B
Python
12 lines
291 B
Python
import royalnet.engineer as engi
|
|
|
|
|
|
@engi.PartialCommand.new(name="ahnonlosoio", syntax="")
|
|
async def ahnonlosoio(_sentry: engi.Sentry, _msg: engi.Message, **__):
|
|
"""
|
|
Ah, non lo so io!
|
|
"""
|
|
await _msg.send_reply(r"¯\_(ツ)_/¯ Ah, non lo so io!")
|
|
|
|
|
|
__all__ = ("ahnonlosoio",)
|