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
|
||
|
|
||
|
|
||
|
@engi.TeleportingConversation
|
||
|
async def pmots(*, _sentry: engi.Sentry, _msg: engi.Message, **__):
|
||
|
"""
|
||
|
Riprenditi da uno stomp colossale!
|
||
|
|
||
|
https://t.me/c/1153723135/181784
|
||
|
"""
|
||
|
await _msg.reply(text="👣 pmots pmots")
|
||
|
|
||
|
|
||
|
__all__ = ("pmots",)
|