Commited backup

This commit is contained in:
2025-07-10 21:02:34 +03:00
parent 952c1001e3
commit da0b80823e
1310 changed files with 254133 additions and 41 deletions

View File

@@ -0,0 +1,22 @@
# канал @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