(
&self,
_path: &WorkspacePath,
_content: &str,
)
| 1030 | } |
| 1031 | |
| 1032 | async fn write_text( |
| 1033 | &self, |
| 1034 | _path: &WorkspacePath, |
| 1035 | _content: &str, |
| 1036 | ) -> WorkspaceResult<WorkspaceWriteOutcome> { |
| 1037 | Err(WorkspaceError::Unsupported("not implemented".into())) |
| 1038 | } |
| 1039 | |
| 1040 | async fn list_dir( |
| 1041 | &self, |
no test coverage detected