Get a single project by slug.
(
&self,
workspace_slug: &str,
project_slug: &str,
)
| 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( |
no test coverage detected