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

Method get_project

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

Get a single project by slug.

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

Source from the content-addressed store, hash-verified

306
307 /// Get a single project by slug.
308 pub async fn get_project(
309 &self,
310 workspace_slug: &str,
311 project_slug: &str,
312 ) -> Result<ProjectInfo, RemoteError> {
313 self.get(&format!(
314 "/workspaces/{}/projects/{}",
315 workspace_slug, project_slug
316 ))
317 .await
318 }
319
320 /// Update an existing project.
321 pub async fn update_project(

Callers 1

runMethod · 0.80

Calls 1

getMethod · 0.65

Tested by

no test coverage detected