mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 11:34:18 +00:00
16 lines
321 B
Python
16 lines
321 B
Python
import royalnet.engineer as engi
|
|
import royalpack.bolts as rb
|
|
|
|
|
|
@rb.capture_errors
|
|
@engi.TeleportingConversation
|
|
async def pmots(*, _msg: engi.Message, **__):
|
|
"""
|
|
Riprenditi da uno stomp colossale!
|
|
|
|
https://t.me/c/1153723135/181784
|
|
"""
|
|
await _msg.reply(text="👣 pmots pmots")
|
|
|
|
|
|
__all__ = ("pmots",)
|