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