(&self, input: &str)
| 74 | |
| 75 | impl WorkspacePathResolver for LocalWorkspaceBackend { |
| 76 | fn normalize(&self, input: &str) -> Result<WorkspacePath> { |
| 77 | normalize_local_path(&self.root, input) |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | #[async_trait] |
nothing calls this directly
no test coverage detected