1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 11:34:18 +00:00

#1 Add /pmots

This commit is contained in:
Steffo 2021-04-18 17:02:32 +02:00
parent 6aa9532976
commit 5164187fe0
Signed by: steffo
GPG key ID: 6965406171929D01
3 changed files with 16 additions and 0 deletions

View file

@ -54,6 +54,7 @@ register_telegram(commands.dog_any, ["dog"])
register_telegram(commands.dog_breedlist, ["dog"], "(?:list|help|aiuto)") register_telegram(commands.dog_breedlist, ["dog"], "(?:list|help|aiuto)")
register_telegram(commands.dog_breed, ["dog"], "(?P<breed>[A-Za-z/]+)") register_telegram(commands.dog_breed, ["dog"], "(?P<breed>[A-Za-z/]+)")
register_telegram(commands.fortune, ["fortune"]) register_telegram(commands.fortune, ["fortune"])
register_telegram(commands.pmots, ["pmots"])
pda.implementations["telethon.1"].register_conversation(r) pda.implementations["telethon.1"].register_conversation(r)

View file

@ -8,3 +8,4 @@ from .ship import *
from .emojify import * from .emojify import *
from .dog import * from .dog import *
from .fortune import * from .fortune import *
from .pmots import *

View file

@ -0,0 +1,14 @@
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",)