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