Close a session Removes the session from the session manager.
(&self, session_id: &str)
| 553 | /// |
| 554 | /// Removes the session from the session manager. |
| 555 | pub fn close_session(&self, session_id: &str) -> Result<(), String> { |
| 556 | self.session_provider.remove_session(session_id) |
| 557 | } |
| 558 | |
| 559 | /// Get the session manager reference (for backward compatibility) |
| 560 | /// |