forwardspam_cyprus_off/bot/loader.py

15 lines
306 B
Python
Raw Normal View History

2024-09-14 20:27:11 +00:00
from pyrogram import Client
from bot import config
from bot.scheduler import AsyncScheduler
api_id_1 = config.API_ID_1
api_hash_1 = config.API_HASH_1
app1 = Client("cyprus_off", api_id=api_id_1, api_hash=api_hash_1, workdir='bot')
print(f'client is wait ...')
print(app1)
scheduler = AsyncScheduler()