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