(
&self,
file_name: &str,
contents: &str,
file_path: Option<&str>,
)
| 68 | } |
| 69 | |
| 70 | async fn upload_object( |
| 71 | &self, |
| 72 | file_name: &str, |
| 73 | contents: &str, |
| 74 | file_path: Option<&str>, |
| 75 | ) -> Result<usize, String> { |
| 76 | lib::upload_object(&self.credentials, file_name, contents, file_path).await |
| 77 | } |
| 78 | |
| 79 | async fn fetch_compressed_object( |
| 80 | &self, |
nothing calls this directly
no test coverage detected