(&self, workspace_path: Option<PathBuf>)
| 67 | } |
| 68 | |
| 69 | pub async fn set_workspace_path(&self, workspace_path: Option<PathBuf>) { |
| 70 | let mut guard = self.workspace_path.lock().await; |
| 71 | *guard = workspace_path; |
| 72 | } |
| 73 | |
| 74 | fn build_default_session_name() -> String { |
| 75 | format!( |