(&self, path: &WorkspacePath)
| 500 | #[async_trait] |
| 501 | impl WorkspaceFileSystem for S3WorkspaceBackend { |
| 502 | async fn read_text(&self, path: &WorkspacePath) -> WorkspaceResult<String> { |
| 503 | let (content, _etag) = self.get_object_text(path).await?; |
| 504 | Ok(content) |
| 505 | } |
| 506 | |
| 507 | async fn write_text( |
| 508 | &self, |