(
&self,
file_name: &str,
contents: &Vec<u8>,
file_path: Option<&str>,
)
| 85 | } |
| 86 | |
| 87 | async fn upload_compressed_object( |
| 88 | &self, |
| 89 | file_name: &str, |
| 90 | contents: &Vec<u8>, |
| 91 | file_path: Option<&str>, |
| 92 | ) -> Result<usize, String> { |
| 93 | lib::upload_compressed_object(&self.credentials, file_name, contents, file_path).await |
| 94 | } |
| 95 | } |
nothing calls this directly
no test coverage detected