Delete a project by slug.
(
&self,
workspace_slug: &str,
project_slug: &str,
)
| 360 | |
| 361 | /// Delete a project by slug. |
| 362 | pub async fn delete_project( |
| 363 | &self, |
| 364 | workspace_slug: &str, |
| 365 | project_slug: &str, |
| 366 | ) -> Result<(), RemoteError> { |
| 367 | self.delete(&format!( |
| 368 | "/workspaces/{}/projects/{}", |
| 369 | workspace_slug, project_slug |
| 370 | )) |
| 371 | .await |
| 372 | } |
| 373 | |
| 374 | // ----------------------------------------------------------------------- |
| 375 | // Identity resolution |
no test coverage detected