MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / delete_project

Method delete_project

atomic-remote/src/storage.rs:362–372  ·  view source on GitHub ↗

Delete a project by slug.

(
        &self,
        workspace_slug: &str,
        project_slug: &str,
    )

Source from the content-addressed store, hash-verified

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

Callers 1

execute_with_clientMethod · 0.80

Calls 1

deleteMethod · 0.45

Tested by

no test coverage detected