(
&self,
file_name: &str,
file_path: Option<&str>,
)
| 62 | } |
| 63 | |
| 64 | async fn fetch_object( |
| 65 | &self, |
| 66 | file_name: &str, |
| 67 | file_path: Option<&str>, |
| 68 | ) -> Result<String, String> { |
| 69 | lib::fetch_object(&self.credentials, file_name, file_path).await |
| 70 | } |
| 71 | |
| 72 | async fn upload_object( |
| 73 | &self, |
nothing calls this directly
no test coverage detected