(
&self,
file_name: &str,
file_path: Option<&str>,
)
| 79 | } |
| 80 | |
| 81 | async fn fetch_compressed_object( |
| 82 | &self, |
| 83 | file_name: &str, |
| 84 | file_path: Option<&str>, |
| 85 | ) -> Result<(Vec<u8>, usize), String> { |
| 86 | lib::fetch_compressed_object(&self.credentials, file_name, file_path).await |
| 87 | } |
| 88 | |
| 89 | async fn upload_compressed_object( |
| 90 | &self, |
nothing calls this directly
no test coverage detected