Delete a workspace by slug.
(&self, slug: &str)
| 305 | |
| 306 | /// Delete a workspace by slug. |
| 307 | pub async fn delete_workspace(&self, slug: &str) -> Result<(), RemoteError> { |
| 308 | self.delete(&format!("/workspaces/{}", slug)).await |
| 309 | } |
| 310 | |
| 311 | // ----------------------------------------------------------------------- |
| 312 | // Project operations |