Spaces:
Runtime error
Runtime error
| from __future__ import annotations | |
| from hydrogram import Client | |
| from app.config import Config | |
| def build_bot(cfg: Config) -> Client: | |
| return Client( | |
| name="yt_uploader_bot", | |
| api_id=cfg.API_ID, | |
| api_hash=cfg.API_HASH, | |
| bot_token=cfg.BOT_TOKEN, | |
| in_memory=True, | |
| workers=20, | |
| ) |