(self, session_id: str, websocket_manager)
| 71 | ) |
| 72 | |
| 73 | async def _handle_ping(self, session_id: str, websocket_manager): |
| 74 | await websocket_manager.handle_heartbeat(session_id) |
| 75 | |
| 76 | async def _handle_get_status(self, session_id: str, websocket_manager): |
| 77 | session_info = self.session_store.get_session_info(session_id) |
no test coverage detected