(self)
| 22 | |
| 23 | class TechifyBots(Client): |
| 24 | def __init__(self): |
| 25 | super().__init__( |
| 26 | name="RenameBot", |
| 27 | api_id=Config.API_ID, |
| 28 | api_hash=Config.API_HASH, |
| 29 | bot_token=Config.BOT_TOKEN, |
| 30 | workers=200, |
| 31 | plugins={"root": "plugins"}, |
| 32 | sleep_threshold=5, |
| 33 | max_concurrent_transmissions=50 |
| 34 | ) |
| 35 | |
| 36 | |
| 37 | async def start(self): |
nothing calls this directly
no outgoing calls
no test coverage detected