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,15 @@
from .. import loader
class CheckSubscribe(loader.Library):
developer = "@vsecoder"
version = (1, 0, 0)
async def check(self, client, channel_name="vsecoder_m"):
try:
channel = await client.get_entity(f"t.me/{channel_name}")
if channel.title:
return True
return False
except Exception:
return False