mirror of
https://github.com/MuRuLOSE/limoka.git
synced 2026-06-18 07:04:19 +02:00
Commited backup
This commit is contained in:
22
Ijidishurka/modules/bill.py
Normal file
22
Ijidishurka/modules/bill.py
Normal 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
|
||||
Reference in New Issue
Block a user