(self)
| 10 | class StreamXBot(Client): |
| 11 | |
| 12 | def __init__(self): |
| 13 | super().__init__( |
| 14 | name="vjfiletolink", |
| 15 | api_id=API_ID, |
| 16 | api_hash=API_HASH, |
| 17 | bot_token=BOT_TOKEN, |
| 18 | workers=150, |
| 19 | plugins={"root": "plugins"}, |
| 20 | sleep_threshold=5, |
| 21 | ) |
| 22 | async def iter_messages( |
| 23 | self, |
| 24 | chat_id: Union[int, str], |
nothing calls this directly
no outgoing calls
no test coverage detected