(
&self,
_path: &WorkspacePath,
)
| 309 | }) |
| 310 | } |
| 311 | async fn list_dir( |
| 312 | &self, |
| 313 | _path: &WorkspacePath, |
| 314 | ) -> WorkspaceResult<Vec<WorkspaceDirEntry>> { |
| 315 | Ok(Vec::new()) |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | #[async_trait] |