Get a single workspace by slug.
(&self, slug: &str)
| 291 | |
| 292 | /// Get a single workspace by slug. |
| 293 | pub async fn get_workspace(&self, slug: &str) -> Result<WorkspaceInfo, RemoteError> { |
| 294 | self.get(&format!("/workspaces/{}", slug)).await |
| 295 | } |
| 296 | |
| 297 | /// Update an existing workspace. |
| 298 | pub async fn update_workspace( |
no test coverage detected