(self)
| 367 | class TelegramMonitor: |
| 368 | |
| 369 | def __init__(self): |
| 370 | self.active_tasks = {} |
| 371 | self.status_data = {} |
| 372 | |
| 373 | async def _monitor_loop(self, target_id, target_name, duration_seconds, creds): |
| 374 | client = TelegramClient(StringSession(creds['tg_session']), int(creds['tg_id']), creds['tg_hash'], loop=get_telethon_loop()) |
nothing calls this directly
no outgoing calls
no test coverage detected