Get a single workspace by slug.
(&self, slug: &str)
| 264 | |
| 265 | /// Get a single workspace by slug. |
| 266 | pub async fn get_workspace(&self, slug: &str) -> Result<WorkspaceInfo, RemoteError> { |
| 267 | self.get(&format!("/workspaces/{}", slug)).await |
| 268 | } |
| 269 | |
| 270 | /// Update an existing workspace. |
| 271 | pub async fn update_workspace( |
no test coverage detected