(&self, _path: &WorkspacePath)
| 296 | #[async_trait] |
| 297 | impl WorkspaceFileSystem for AlwaysConflictFs { |
| 298 | async fn read_text(&self, _path: &WorkspacePath) -> WorkspaceResult<String> { |
| 299 | Ok("hello world".to_string()) |
| 300 | } |
| 301 | async fn write_text( |
| 302 | &self, |
| 303 | _path: &WorkspacePath, |