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

Method create_project

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

323
324 /// Create a new project in a workspace.
325 pub async fn create_project(
326 &self,
327 workspace_slug: &str,
328 req: &CreateProjectRequest,
329 ) -> Result<ProjectInfo, RemoteError> {
330 self.post(&format!("/workspaces/{}/projects", workspace_slug), req)
331 .await
332 }
333
334 /// Get a single project by slug.
335 pub async fn get_project(

Callers 2

runMethod · 0.80
executeMethod · 0.80

Calls 1

postMethod · 0.80

Tested by

no test coverage detected