(&self, file_path: Option<&str>)
| 58 | #[async_trait] |
| 59 | impl DataStoreDriver for Ftps { |
| 60 | async fn list_objects(&self, file_path: Option<&str>) -> Result<Vec<String>, String> { |
| 61 | lib::list_objects(&self.credentials, file_path).await |
| 62 | } |
| 63 | |
| 64 | async fn fetch_object( |
| 65 | &self, |
nothing calls this directly
no test coverage detected