(&self)
| 295 | #[async_trait] |
| 296 | impl WorkspaceGit for LocalWorkspaceBackend { |
| 297 | async fn is_repository(&self) -> Result<bool> { |
| 298 | self.run_blocking_git(|root| Ok(crate::git::is_git_repo(&root))) |
| 299 | .await |
| 300 | } |
| 301 | |
| 302 | async fn status(&self) -> Result<WorkspaceGitStatus> { |
| 303 | self.run_blocking_git(|root| { |
no test coverage detected