mirror of
https://github.com/MuRuLOSE/limoka.git
synced 2026-06-16 22:34:19 +02:00
23 lines
579 B
Python
23 lines
579 B
Python
# канал @modwini
|
|
from .. import loader
|
|
|
|
|
|
@loader.tds
|
|
class billy(loader.Module):
|
|
"""Подпишись на канал @modwini"""
|
|
|
|
strings = {"name": "Billy"}
|
|
|
|
async def billycmd(self, message):
|
|
"""Отправляет видео сообщение"""
|
|
|
|
reply = await message.get_reply_message()
|
|
await message.delete()
|
|
await message.client.send_file(
|
|
message.to_id,
|
|
"https://telesco.pe/kruglishik/31",
|
|
voice_note=True,
|
|
reply_to=reply.id if reply else None,
|
|
)
|
|
return
|