Delete a workspace by slug.
(&self, slug: &str)
| 278 | |
| 279 | /// Delete a workspace by slug. |
| 280 | pub async fn delete_workspace(&self, slug: &str) -> Result<(), RemoteError> { |
| 281 | self.delete(&format!("/workspaces/{}", slug)).await |
| 282 | } |
| 283 | |
| 284 | // ----------------------------------------------------------------------- |
| 285 | // Project operations |