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

Method get_project

atomic-remote/src/storage.rs:335–345  ·  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

333
334 /// Get a single project by slug.
335 pub async fn get_project(
336 &self,
337 workspace_slug: &str,
338 project_slug: &str,
339 ) -> Result<ProjectInfo, RemoteError> {
340 self.get(&format!(
341 "/workspaces/{}/projects/{}",
342 workspace_slug, project_slug
343 ))
344 .await
345 }
346
347 /// Update an existing project.
348 pub async fn update_project(

Callers 2

runMethod · 0.80
execute_with_clientMethod · 0.80

Calls 1

getMethod · 0.65

Tested by

no test coverage detected