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