Files
limoka/Ijidishurka/modules/bill.py
2025-07-10 21:02:34 +03:00

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