| 21 | #[cfg_attr(test, mockall::automock)] |
| 22 | #[async_trait] |
| 23 | trait ListObjects { |
| 24 | async fn list_objects(&self, bucket: &str) -> Result<ListObjectsV2Output, Error>; |
| 25 | } |
| 26 | |
| 27 | #[async_trait] |
| 28 | impl ListObjects for S3Client { |
nothing calls this directly
no outgoing calls
no test coverage detected