(
&self,
path: &WorkspacePath,
)
| 637 | #[async_trait] |
| 638 | impl WorkspaceFileSystemExt for S3WorkspaceBackend { |
| 639 | async fn read_text_with_version( |
| 640 | &self, |
| 641 | path: &WorkspacePath, |
| 642 | ) -> WorkspaceResult<(String, String)> { |
| 643 | self.get_object_text(path).await |
| 644 | } |
| 645 | |
| 646 | async fn write_text_if_version( |
| 647 | &self, |
no test coverage detected