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

Method create_project

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

Create a new project in a workspace.

(
        &self,
        workspace_slug: &str,
        req: &CreateProjectRequest,
    )

Source from the content-addressed store, hash-verified

296
297 /// Create a new project in a workspace.
298 pub async fn create_project(
299 &self,
300 workspace_slug: &str,
301 req: &CreateProjectRequest,
302 ) -> Result<ProjectInfo, RemoteError> {
303 self.post(&format!("/workspaces/{}/projects", workspace_slug), req)
304 .await
305 }
306
307 /// Get a single project by slug.
308 pub async fn get_project(

Callers 2

runMethod · 0.80
executeMethod · 0.80

Calls 1

postMethod · 0.80

Tested by

no test coverage detected