Get session details
(session_id: str)
| 239 | |
| 240 | @router.get('/sessions/{session_id}') |
| 241 | async def get_session(session_id: str): |
| 242 | """Get session details""" |
| 243 | session = session_manager.get_session(session_id) |
| 244 | if not session: |
| 245 | raise HTTPException(status_code=404, detail='Session not found') |
| 246 | return session |
| 247 | |
| 248 | |
| 249 | @router.delete('/sessions/{session_id}') |
nothing calls this directly
no test coverage detected